| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| promotions | Promotion[] |
|
Yes | - |
| categories | Category[] |
|
Yes | - |
| features | Feature[] |
|
Yes | - |
Find zero or one Industry
// Get one Industry
const industry = await prisma.industry.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | IndustryWhereUniqueInput | Yes |
Find first Industry
// Get one Industry
const industry = await prisma.industry.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | IndustryWhereInput | No |
| orderBy | IndustryOrderByWithRelationInput[] | IndustryOrderByWithRelationInput | No |
| cursor | IndustryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | IndustryScalarFieldEnum | IndustryScalarFieldEnum[] | No |
Find zero or more Industry
// Get all Industry
const Industry = await prisma.industry.findMany()
// Get first 10 Industry
const Industry = await prisma.industry.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | IndustryWhereInput | No |
| orderBy | IndustryOrderByWithRelationInput[] | IndustryOrderByWithRelationInput | No |
| cursor | IndustryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | IndustryScalarFieldEnum | IndustryScalarFieldEnum[] | No |
Create one Industry
// Create one Industry
const Industry = await prisma.industry.create({
data: {
// ... data to create a Industry
}
})
| Name | Type | Required |
|---|---|---|
| data | IndustryCreateInput | IndustryUncheckedCreateInput | Yes |
Delete one Industry
// Delete one Industry
const Industry = await prisma.industry.delete({
where: {
// ... filter to delete one Industry
}
})
| Name | Type | Required |
|---|---|---|
| where | IndustryWhereUniqueInput | Yes |
Update one Industry
// Update one Industry
const industry = await prisma.industry.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | IndustryUpdateInput | IndustryUncheckedUpdateInput | Yes |
| where | IndustryWhereUniqueInput | Yes |
Delete zero or more Industry
// Delete a few Industry
const { count } = await prisma.industry.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | IndustryWhereInput | No |
Update zero or one Industry
const { count } = await prisma.industry.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | IndustryUpdateManyMutationInput | IndustryUncheckedUpdateManyInput | Yes |
| where | IndustryWhereInput | No |
Create or update one Industry
// Update or create a Industry
const industry = await prisma.industry.upsert({
create: {
// ... data to create a Industry
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Industry we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | IndustryWhereUniqueInput | Yes |
| create | IndustryCreateInput | IndustryUncheckedCreateInput | Yes |
| update | IndustryUpdateInput | IndustryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| user | User[] |
|
Yes | - |
| promotions | Promotion[] |
|
Yes | - |
| brandTemplate | BrandTemplate[] |
|
Yes | - |
| features | Feature[] |
|
Yes | - |
Find zero or one Country
// Get one Country
const country = await prisma.country.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereUniqueInput | Yes |
Find first Country
// Get one Country
const country = await prisma.country.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereInput | No |
| orderBy | CountryOrderByWithRelationInput[] | CountryOrderByWithRelationInput | No |
| cursor | CountryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CountryScalarFieldEnum | CountryScalarFieldEnum[] | No |
Find zero or more Country
// Get all Country
const Country = await prisma.country.findMany()
// Get first 10 Country
const Country = await prisma.country.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CountryWhereInput | No |
| orderBy | CountryOrderByWithRelationInput[] | CountryOrderByWithRelationInput | No |
| cursor | CountryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CountryScalarFieldEnum | CountryScalarFieldEnum[] | No |
Create one Country
// Create one Country
const Country = await prisma.country.create({
data: {
// ... data to create a Country
}
})
| Name | Type | Required |
|---|---|---|
| data | CountryCreateInput | CountryUncheckedCreateInput | Yes |
Delete one Country
// Delete one Country
const Country = await prisma.country.delete({
where: {
// ... filter to delete one Country
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereUniqueInput | Yes |
Update one Country
// Update one Country
const country = await prisma.country.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CountryUpdateInput | CountryUncheckedUpdateInput | Yes |
| where | CountryWhereUniqueInput | Yes |
Delete zero or more Country
// Delete a few Country
const { count } = await prisma.country.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereInput | No |
Update zero or one Country
const { count } = await prisma.country.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CountryUpdateManyMutationInput | CountryUncheckedUpdateManyInput | Yes |
| where | CountryWhereInput | No |
Create or update one Country
// Update or create a Country
const country = await prisma.country.upsert({
create: {
// ... data to create a Country
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Country we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereUniqueInput | Yes |
| create | CountryCreateInput | CountryUncheckedCreateInput | Yes |
| update | CountryUpdateInput | CountryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| String |
|
Yes | - | |
| password | String? |
|
No | - |
| token | String? |
|
No | - |
| fcm_token | String? |
|
No | - |
| avatar | String? |
|
No | - |
| role | Role? |
|
No | - |
| roleId | String? |
|
No | - |
| suspendendAt | DateTime? |
|
No | - |
| status | UserStatus? |
|
No | - |
| streetAddress | String? |
|
No | - |
| city | String? |
|
No | - |
| cell | String? |
|
No | - |
| tell | String? |
|
No | - |
| verificationCode | Int? |
|
No | - |
| country | Country? |
|
No | - |
| countryId | String? |
|
No | - |
| teams | Team[] |
|
Yes | - |
| assignedTasks | Task[] |
|
Yes | - |
| createdTasks | Task[] |
|
Yes | - |
| promotion | Promotion[] |
|
Yes | - |
| payment | Payment[] |
|
Yes | - |
| createdTemplates | BrandTemplate[] |
|
Yes | - |
| reviewedTemplates | BrandTemplate[] |
|
Yes | - |
| clientEdits | ClientEdit[] |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String? |
|
No | - |
| permissions | Permissions[] |
|
Yes | - |
| user | User[] |
|
Yes | - |
Find zero or one Role
// Get one Role
const role = await prisma.role.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereUniqueInput | Yes |
Find first Role
// Get one Role
const role = await prisma.role.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereInput | No |
| orderBy | RoleOrderByWithRelationInput[] | RoleOrderByWithRelationInput | No |
| cursor | RoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RoleScalarFieldEnum | RoleScalarFieldEnum[] | No |
Find zero or more Role
// Get all Role
const Role = await prisma.role.findMany()
// Get first 10 Role
const Role = await prisma.role.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RoleWhereInput | No |
| orderBy | RoleOrderByWithRelationInput[] | RoleOrderByWithRelationInput | No |
| cursor | RoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RoleScalarFieldEnum | RoleScalarFieldEnum[] | No |
Create one Role
// Create one Role
const Role = await prisma.role.create({
data: {
// ... data to create a Role
}
})
| Name | Type | Required |
|---|---|---|
| data | RoleCreateInput | RoleUncheckedCreateInput | Yes |
Delete one Role
// Delete one Role
const Role = await prisma.role.delete({
where: {
// ... filter to delete one Role
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereUniqueInput | Yes |
Update one Role
// Update one Role
const role = await prisma.role.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RoleUpdateInput | RoleUncheckedUpdateInput | Yes |
| where | RoleWhereUniqueInput | Yes |
Delete zero or more Role
// Delete a few Role
const { count } = await prisma.role.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereInput | No |
Update zero or one Role
const { count } = await prisma.role.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RoleUpdateManyMutationInput | RoleUncheckedUpdateManyInput | Yes |
| where | RoleWhereInput | No |
Create or update one Role
// Update or create a Role
const role = await prisma.role.upsert({
create: {
// ... data to create a Role
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Role we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RoleWhereUniqueInput | Yes |
| create | RoleCreateInput | RoleUncheckedCreateInput | Yes |
| update | RoleUpdateInput | RoleUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| domain | String |
|
Yes | - |
| accessLevel | PermissionTypes |
|
Yes | - |
| Role | Role[] |
|
Yes | - |
Find zero or one Permissions
// Get one Permissions
const permissions = await prisma.permissions.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionsWhereUniqueInput | Yes |
Find first Permissions
// Get one Permissions
const permissions = await prisma.permissions.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionsWhereInput | No |
| orderBy | PermissionsOrderByWithRelationInput[] | PermissionsOrderByWithRelationInput | No |
| cursor | PermissionsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PermissionsScalarFieldEnum | PermissionsScalarFieldEnum[] | No |
Find zero or more Permissions
// Get all Permissions
const Permissions = await prisma.permissions.findMany()
// Get first 10 Permissions
const Permissions = await prisma.permissions.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PermissionsWhereInput | No |
| orderBy | PermissionsOrderByWithRelationInput[] | PermissionsOrderByWithRelationInput | No |
| cursor | PermissionsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PermissionsScalarFieldEnum | PermissionsScalarFieldEnum[] | No |
Create one Permissions
// Create one Permissions
const Permissions = await prisma.permissions.create({
data: {
// ... data to create a Permissions
}
})
| Name | Type | Required |
|---|---|---|
| data | PermissionsCreateInput | PermissionsUncheckedCreateInput | Yes |
Delete one Permissions
// Delete one Permissions
const Permissions = await prisma.permissions.delete({
where: {
// ... filter to delete one Permissions
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionsWhereUniqueInput | Yes |
Update one Permissions
// Update one Permissions
const permissions = await prisma.permissions.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PermissionsUpdateInput | PermissionsUncheckedUpdateInput | Yes |
| where | PermissionsWhereUniqueInput | Yes |
Delete zero or more Permissions
// Delete a few Permissions
const { count } = await prisma.permissions.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionsWhereInput | No |
Update zero or one Permissions
const { count } = await prisma.permissions.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PermissionsUpdateManyMutationInput | PermissionsUncheckedUpdateManyInput | Yes |
| where | PermissionsWhereInput | No |
Create or update one Permissions
// Update or create a Permissions
const permissions = await prisma.permissions.upsert({
create: {
// ... data to create a Permissions
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Permissions we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PermissionsWhereUniqueInput | Yes |
| create | PermissionsCreateInput | PermissionsUncheckedCreateInput | Yes |
| update | PermissionsUpdateInput | PermissionsUncheckedUpdateInput | Yes |
Find zero or one Team
// Get one Team
const team = await prisma.team.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereUniqueInput | Yes |
Find first Team
// Get one Team
const team = await prisma.team.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereInput | No |
| orderBy | TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput | No |
| cursor | TeamWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamScalarFieldEnum | TeamScalarFieldEnum[] | No |
Find zero or more Team
// Get all Team
const Team = await prisma.team.findMany()
// Get first 10 Team
const Team = await prisma.team.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TeamWhereInput | No |
| orderBy | TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput | No |
| cursor | TeamWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamScalarFieldEnum | TeamScalarFieldEnum[] | No |
Create one Team
// Create one Team
const Team = await prisma.team.create({
data: {
// ... data to create a Team
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamCreateInput | TeamUncheckedCreateInput | Yes |
Delete one Team
// Delete one Team
const Team = await prisma.team.delete({
where: {
// ... filter to delete one Team
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereUniqueInput | Yes |
Update one Team
// Update one Team
const team = await prisma.team.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamUpdateInput | TeamUncheckedUpdateInput | Yes |
| where | TeamWhereUniqueInput | Yes |
Delete zero or more Team
// Delete a few Team
const { count } = await prisma.team.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereInput | No |
Update zero or one Team
const { count } = await prisma.team.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyInput | Yes |
| where | TeamWhereInput | No |
Create or update one Team
// Update or create a Team
const team = await prisma.team.upsert({
create: {
// ... data to create a Team
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Team we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereUniqueInput | Yes |
| create | TeamCreateInput | TeamUncheckedCreateInput | Yes |
| update | TeamUpdateInput | TeamUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| teams | Team[] |
|
Yes | - |
| title | String |
|
Yes | - |
| description | String? |
|
No | - |
| startDate | DateTime? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| deadline | DateTime? |
|
No | - |
| active | Boolean? |
|
No | - |
| isComplete | Boolean? |
|
No | - |
| tasks | Task[] |
|
Yes | - |
Find zero or one Goal
// Get one Goal
const goal = await prisma.goal.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GoalWhereUniqueInput | Yes |
Find first Goal
// Get one Goal
const goal = await prisma.goal.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GoalWhereInput | No |
| orderBy | GoalOrderByWithRelationInput[] | GoalOrderByWithRelationInput | No |
| cursor | GoalWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GoalScalarFieldEnum | GoalScalarFieldEnum[] | No |
Find zero or more Goal
// Get all Goal
const Goal = await prisma.goal.findMany()
// Get first 10 Goal
const Goal = await prisma.goal.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | GoalWhereInput | No |
| orderBy | GoalOrderByWithRelationInput[] | GoalOrderByWithRelationInput | No |
| cursor | GoalWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GoalScalarFieldEnum | GoalScalarFieldEnum[] | No |
Create one Goal
// Create one Goal
const Goal = await prisma.goal.create({
data: {
// ... data to create a Goal
}
})
| Name | Type | Required |
|---|---|---|
| data | GoalCreateInput | GoalUncheckedCreateInput | Yes |
Delete one Goal
// Delete one Goal
const Goal = await prisma.goal.delete({
where: {
// ... filter to delete one Goal
}
})
| Name | Type | Required |
|---|---|---|
| where | GoalWhereUniqueInput | Yes |
Update one Goal
// Update one Goal
const goal = await prisma.goal.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GoalUpdateInput | GoalUncheckedUpdateInput | Yes |
| where | GoalWhereUniqueInput | Yes |
Delete zero or more Goal
// Delete a few Goal
const { count } = await prisma.goal.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GoalWhereInput | No |
Update zero or one Goal
const { count } = await prisma.goal.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GoalUpdateManyMutationInput | GoalUncheckedUpdateManyInput | Yes |
| where | GoalWhereInput | No |
Create or update one Goal
// Update or create a Goal
const goal = await prisma.goal.upsert({
create: {
// ... data to create a Goal
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Goal we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | GoalWhereUniqueInput | Yes |
| create | GoalCreateInput | GoalUncheckedCreateInput | Yes |
| update | GoalUpdateInput | GoalUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| title | String |
|
Yes | - |
| comments | String? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| startDate | DateTime? |
|
No | - |
| dueDate | DateTime? |
|
No | - |
| priority | TaskPriority? |
|
No | - |
| stage | TaskStage? |
|
No | - |
| Goal | Goal? |
|
No | - |
| GoalId | String? |
|
No | - |
| assignee | User? |
|
No | - |
| assigneeId | String? |
|
No | - |
| createdBy | User? |
|
No | - |
| createdById | String? |
|
No | - |
Find zero or one Task
// Get one Task
const task = await prisma.task.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereUniqueInput | Yes |
Find first Task
// Get one Task
const task = await prisma.task.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereInput | No |
| orderBy | TaskOrderByWithRelationInput[] | TaskOrderByWithRelationInput | No |
| cursor | TaskWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TaskScalarFieldEnum | TaskScalarFieldEnum[] | No |
Find zero or more Task
// Get all Task
const Task = await prisma.task.findMany()
// Get first 10 Task
const Task = await prisma.task.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TaskWhereInput | No |
| orderBy | TaskOrderByWithRelationInput[] | TaskOrderByWithRelationInput | No |
| cursor | TaskWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TaskScalarFieldEnum | TaskScalarFieldEnum[] | No |
Create one Task
// Create one Task
const Task = await prisma.task.create({
data: {
// ... data to create a Task
}
})
| Name | Type | Required |
|---|---|---|
| data | TaskCreateInput | TaskUncheckedCreateInput | Yes |
Delete one Task
// Delete one Task
const Task = await prisma.task.delete({
where: {
// ... filter to delete one Task
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereUniqueInput | Yes |
Update one Task
// Update one Task
const task = await prisma.task.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TaskUpdateInput | TaskUncheckedUpdateInput | Yes |
| where | TaskWhereUniqueInput | Yes |
Delete zero or more Task
// Delete a few Task
const { count } = await prisma.task.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereInput | No |
Update zero or one Task
const { count } = await prisma.task.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyInput | Yes |
| where | TaskWhereInput | No |
Create or update one Task
// Update or create a Task
const task = await prisma.task.upsert({
create: {
// ... data to create a Task
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Task we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TaskWhereUniqueInput | Yes |
| create | TaskCreateInput | TaskUncheckedCreateInput | Yes |
| update | TaskUpdateInput | TaskUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String? |
|
No | - |
| type | FeatureType |
|
Yes | - |
| industries | Industry[] |
|
Yes | - |
| countries | Country[] |
|
Yes | - |
| promotions | Promotion[] |
|
Yes | - |
| packages | Package[] |
|
Yes | - |
Find zero or one Feature
// Get one Feature
const feature = await prisma.feature.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FeatureWhereUniqueInput | Yes |
Find first Feature
// Get one Feature
const feature = await prisma.feature.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FeatureWhereInput | No |
| orderBy | FeatureOrderByWithRelationInput[] | FeatureOrderByWithRelationInput | No |
| cursor | FeatureWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FeatureScalarFieldEnum | FeatureScalarFieldEnum[] | No |
Find zero or more Feature
// Get all Feature
const Feature = await prisma.feature.findMany()
// Get first 10 Feature
const Feature = await prisma.feature.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FeatureWhereInput | No |
| orderBy | FeatureOrderByWithRelationInput[] | FeatureOrderByWithRelationInput | No |
| cursor | FeatureWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FeatureScalarFieldEnum | FeatureScalarFieldEnum[] | No |
Create one Feature
// Create one Feature
const Feature = await prisma.feature.create({
data: {
// ... data to create a Feature
}
})
| Name | Type | Required |
|---|---|---|
| data | FeatureCreateInput | FeatureUncheckedCreateInput | Yes |
Delete one Feature
// Delete one Feature
const Feature = await prisma.feature.delete({
where: {
// ... filter to delete one Feature
}
})
| Name | Type | Required |
|---|---|---|
| where | FeatureWhereUniqueInput | Yes |
Update one Feature
// Update one Feature
const feature = await prisma.feature.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FeatureUpdateInput | FeatureUncheckedUpdateInput | Yes |
| where | FeatureWhereUniqueInput | Yes |
Delete zero or more Feature
// Delete a few Feature
const { count } = await prisma.feature.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FeatureWhereInput | No |
Update zero or one Feature
const { count } = await prisma.feature.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyInput | Yes |
| where | FeatureWhereInput | No |
Create or update one Feature
// Update or create a Feature
const feature = await prisma.feature.upsert({
create: {
// ... data to create a Feature
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Feature we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FeatureWhereUniqueInput | Yes |
| create | FeatureCreateInput | FeatureUncheckedCreateInput | Yes |
| update | FeatureUpdateInput | FeatureUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String? |
|
No | - |
| prices | PackagePrice[] |
|
Yes | - |
| features | Feature[] |
|
Yes | - |
| color | String? |
|
No | - |
| level | Int |
|
Yes | - |
| promotions | Promotion[] |
|
Yes | - |
| payment | Payment[] |
|
Yes | - |
Find zero or one Package
// Get one Package
const package = await prisma.package.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PackageWhereUniqueInput | Yes |
Find first Package
// Get one Package
const package = await prisma.package.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PackageWhereInput | No |
| orderBy | PackageOrderByWithRelationInput[] | PackageOrderByWithRelationInput | No |
| cursor | PackageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PackageScalarFieldEnum | PackageScalarFieldEnum[] | No |
Find zero or more Package
// Get all Package
const Package = await prisma.package.findMany()
// Get first 10 Package
const Package = await prisma.package.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PackageWhereInput | No |
| orderBy | PackageOrderByWithRelationInput[] | PackageOrderByWithRelationInput | No |
| cursor | PackageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PackageScalarFieldEnum | PackageScalarFieldEnum[] | No |
Create one Package
// Create one Package
const Package = await prisma.package.create({
data: {
// ... data to create a Package
}
})
| Name | Type | Required |
|---|---|---|
| data | PackageCreateInput | PackageUncheckedCreateInput | Yes |
Delete one Package
// Delete one Package
const Package = await prisma.package.delete({
where: {
// ... filter to delete one Package
}
})
| Name | Type | Required |
|---|---|---|
| where | PackageWhereUniqueInput | Yes |
Update one Package
// Update one Package
const package = await prisma.package.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PackageUpdateInput | PackageUncheckedUpdateInput | Yes |
| where | PackageWhereUniqueInput | Yes |
Delete zero or more Package
// Delete a few Package
const { count } = await prisma.package.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PackageWhereInput | No |
Update zero or one Package
const { count } = await prisma.package.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PackageUpdateManyMutationInput | PackageUncheckedUpdateManyInput | Yes |
| where | PackageWhereInput | No |
Create or update one Package
// Update or create a Package
const package = await prisma.package.upsert({
create: {
// ... data to create a Package
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Package we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PackageWhereUniqueInput | Yes |
| create | PackageCreateInput | PackageUncheckedCreateInput | Yes |
| update | PackageUpdateInput | PackageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| duration | Float |
|
Yes | - |
| amount | Float |
|
Yes | - |
| extentionTime | Float? |
|
No | - |
| Package | Package? |
|
No | - |
| packageId | String? |
|
No | - |
Find zero or one PackagePrice
// Get one PackagePrice
const packagePrice = await prisma.packagePrice.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PackagePriceWhereUniqueInput | Yes |
Find first PackagePrice
// Get one PackagePrice
const packagePrice = await prisma.packagePrice.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PackagePriceWhereInput | No |
| orderBy | PackagePriceOrderByWithRelationInput[] | PackagePriceOrderByWithRelationInput | No |
| cursor | PackagePriceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PackagePriceScalarFieldEnum | PackagePriceScalarFieldEnum[] | No |
Find zero or more PackagePrice
// Get all PackagePrice
const PackagePrice = await prisma.packagePrice.findMany()
// Get first 10 PackagePrice
const PackagePrice = await prisma.packagePrice.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PackagePriceWhereInput | No |
| orderBy | PackagePriceOrderByWithRelationInput[] | PackagePriceOrderByWithRelationInput | No |
| cursor | PackagePriceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PackagePriceScalarFieldEnum | PackagePriceScalarFieldEnum[] | No |
Create one PackagePrice
// Create one PackagePrice
const PackagePrice = await prisma.packagePrice.create({
data: {
// ... data to create a PackagePrice
}
})
| Name | Type | Required |
|---|---|---|
| data | PackagePriceCreateInput | PackagePriceUncheckedCreateInput | Yes |
Delete one PackagePrice
// Delete one PackagePrice
const PackagePrice = await prisma.packagePrice.delete({
where: {
// ... filter to delete one PackagePrice
}
})
| Name | Type | Required |
|---|---|---|
| where | PackagePriceWhereUniqueInput | Yes |
Update one PackagePrice
// Update one PackagePrice
const packagePrice = await prisma.packagePrice.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PackagePriceUpdateInput | PackagePriceUncheckedUpdateInput | Yes |
| where | PackagePriceWhereUniqueInput | Yes |
Delete zero or more PackagePrice
// Delete a few PackagePrice
const { count } = await prisma.packagePrice.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PackagePriceWhereInput | No |
Update zero or one PackagePrice
const { count } = await prisma.packagePrice.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PackagePriceUpdateManyMutationInput | PackagePriceUncheckedUpdateManyInput | Yes |
| where | PackagePriceWhereInput | No |
Create or update one PackagePrice
// Update or create a PackagePrice
const packagePrice = await prisma.packagePrice.upsert({
create: {
// ... data to create a PackagePrice
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PackagePrice we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PackagePriceWhereUniqueInput | Yes |
| create | PackagePriceCreateInput | PackagePriceUncheckedCreateInput | Yes |
| update | PackagePriceUpdateInput | PackagePriceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String? |
|
No | - |
| startDate | DateTime |
|
Yes | - |
| endDate | DateTime |
|
Yes | - |
| features | Feature[] |
|
Yes | - |
| industries | Industry[] |
|
Yes | - |
| countries | Country[] |
|
Yes | - |
| packages | Package[] |
|
Yes | - |
| createdBy | User? |
|
No | - |
| createdById | String? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
Find zero or one Promotion
// Get one Promotion
const promotion = await prisma.promotion.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereUniqueInput | Yes |
Find first Promotion
// Get one Promotion
const promotion = await prisma.promotion.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereInput | No |
| orderBy | PromotionOrderByWithRelationInput[] | PromotionOrderByWithRelationInput | No |
| cursor | PromotionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PromotionScalarFieldEnum | PromotionScalarFieldEnum[] | No |
Find zero or more Promotion
// Get all Promotion
const Promotion = await prisma.promotion.findMany()
// Get first 10 Promotion
const Promotion = await prisma.promotion.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereInput | No |
| orderBy | PromotionOrderByWithRelationInput[] | PromotionOrderByWithRelationInput | No |
| cursor | PromotionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PromotionScalarFieldEnum | PromotionScalarFieldEnum[] | No |
Create one Promotion
// Create one Promotion
const Promotion = await prisma.promotion.create({
data: {
// ... data to create a Promotion
}
})
| Name | Type | Required |
|---|---|---|
| data | PromotionCreateInput | PromotionUncheckedCreateInput | Yes |
Delete one Promotion
// Delete one Promotion
const Promotion = await prisma.promotion.delete({
where: {
// ... filter to delete one Promotion
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereUniqueInput | Yes |
Update one Promotion
// Update one Promotion
const promotion = await prisma.promotion.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PromotionUpdateInput | PromotionUncheckedUpdateInput | Yes |
| where | PromotionWhereUniqueInput | Yes |
Delete zero or more Promotion
// Delete a few Promotion
const { count } = await prisma.promotion.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereInput | No |
Update zero or one Promotion
const { count } = await prisma.promotion.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyInput | Yes |
| where | PromotionWhereInput | No |
Create or update one Promotion
// Update or create a Promotion
const promotion = await prisma.promotion.upsert({
create: {
// ... data to create a Promotion
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Promotion we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PromotionWhereUniqueInput | Yes |
| create | PromotionCreateInput | PromotionUncheckedCreateInput | Yes |
| update | PromotionUpdateInput | PromotionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| amount | Decimal |
|
Yes | - |
| date | DateTime |
|
Yes | - |
| center | String? |
|
No | - |
| package | Package |
|
Yes | - |
| packageId | String |
|
Yes | - |
| paymentMethod | String |
|
Yes | - |
| cashier | User |
|
Yes | - |
| cashierId | String |
|
Yes | - |
| revoked | Boolean? |
|
No | - |
| createAt | DateTime |
|
Yes | - |
Find zero or one Payment
// Get one Payment
const payment = await prisma.payment.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentWhereUniqueInput | Yes |
Find first Payment
// Get one Payment
const payment = await prisma.payment.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentWhereInput | No |
| orderBy | PaymentOrderByWithRelationInput[] | PaymentOrderByWithRelationInput | No |
| cursor | PaymentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PaymentScalarFieldEnum | PaymentScalarFieldEnum[] | No |
Find zero or more Payment
// Get all Payment
const Payment = await prisma.payment.findMany()
// Get first 10 Payment
const Payment = await prisma.payment.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PaymentWhereInput | No |
| orderBy | PaymentOrderByWithRelationInput[] | PaymentOrderByWithRelationInput | No |
| cursor | PaymentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PaymentScalarFieldEnum | PaymentScalarFieldEnum[] | No |
Create one Payment
// Create one Payment
const Payment = await prisma.payment.create({
data: {
// ... data to create a Payment
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentCreateInput | PaymentUncheckedCreateInput | Yes |
Delete one Payment
// Delete one Payment
const Payment = await prisma.payment.delete({
where: {
// ... filter to delete one Payment
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentWhereUniqueInput | Yes |
Update one Payment
// Update one Payment
const payment = await prisma.payment.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentUpdateInput | PaymentUncheckedUpdateInput | Yes |
| where | PaymentWhereUniqueInput | Yes |
Delete zero or more Payment
// Delete a few Payment
const { count } = await prisma.payment.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentWhereInput | No |
Update zero or one Payment
const { count } = await prisma.payment.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyInput | Yes |
| where | PaymentWhereInput | No |
Create or update one Payment
// Update or create a Payment
const payment = await prisma.payment.upsert({
create: {
// ... data to create a Payment
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Payment we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PaymentWhereUniqueInput | Yes |
| create | PaymentCreateInput | PaymentUncheckedCreateInput | Yes |
| update | PaymentUpdateInput | PaymentUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String? |
|
No | - |
| icon | String? |
|
No | - |
| industries | Industry[] |
|
Yes | - |
| createdBy | String? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| brandTemplate | BrandTemplate[] |
|
Yes | - |
Find zero or one Category
// Get one Category
const category = await prisma.category.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Find first Category
// Get one Category
const category = await prisma.category.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Find zero or more Category
// Get all Category
const Category = await prisma.category.findMany()
// Get first 10 Category
const Category = await prisma.category.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Create one Category
// Create one Category
const Category = await prisma.category.create({
data: {
// ... data to create a Category
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
Delete one Category
// Delete one Category
const Category = await prisma.category.delete({
where: {
// ... filter to delete one Category
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Update one Category
// Update one Category
const category = await prisma.category.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
| where | CategoryWhereUniqueInput | Yes |
Delete zero or more Category
// Delete a few Category
const { count } = await prisma.category.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
Update zero or one Category
const { count } = await prisma.category.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyInput | Yes |
| where | CategoryWhereInput | No |
Create or update one Category
// Update or create a Category
const category = await prisma.category.upsert({
create: {
// ... data to create a Category
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Category we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
| create | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
| update | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| url | String |
|
Yes | - |
| incomplete | Boolean? |
|
No | - |
| incompleteMessage | String? |
|
No | - |
| isTransparent | Boolean? |
|
No | - |
| side | ImageSide |
|
Yes | - |
| brandTemplate | BrandTemplate[] |
|
Yes | - |
Find zero or one Image
// Get one Image
const image = await prisma.image.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereUniqueInput | Yes |
Find first Image
// Get one Image
const image = await prisma.image.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereInput | No |
| orderBy | ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput | No |
| cursor | ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ImageScalarFieldEnum | ImageScalarFieldEnum[] | No |
Find zero or more Image
// Get all Image
const Image = await prisma.image.findMany()
// Get first 10 Image
const Image = await prisma.image.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ImageWhereInput | No |
| orderBy | ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput | No |
| cursor | ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ImageScalarFieldEnum | ImageScalarFieldEnum[] | No |
Create one Image
// Create one Image
const Image = await prisma.image.create({
data: {
// ... data to create a Image
}
})
| Name | Type | Required |
|---|---|---|
| data | ImageCreateInput | ImageUncheckedCreateInput | Yes |
Delete one Image
// Delete one Image
const Image = await prisma.image.delete({
where: {
// ... filter to delete one Image
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereUniqueInput | Yes |
Update one Image
// Update one Image
const image = await prisma.image.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ImageUpdateInput | ImageUncheckedUpdateInput | Yes |
| where | ImageWhereUniqueInput | Yes |
Delete zero or more Image
// Delete a few Image
const { count } = await prisma.image.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereInput | No |
Update zero or one Image
const { count } = await prisma.image.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ImageUpdateManyMutationInput | ImageUncheckedUpdateManyInput | Yes |
| where | ImageWhereInput | No |
Create or update one Image
// Update or create a Image
const image = await prisma.image.upsert({
create: {
// ... data to create a Image
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Image we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereUniqueInput | Yes |
| create | ImageCreateInput | ImageUncheckedCreateInput | Yes |
| update | ImageUpdateInput | ImageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| clientId | String? |
|
No | - |
| action | ClientEditAction |
|
Yes | - |
| field | String |
|
Yes | - |
| newValue | String |
|
Yes | - |
| oldValue | String |
|
Yes | - |
| approved | Boolean? |
|
No | - |
| approvedTime | DateTime? |
|
No | - |
| approvedBy | User? |
|
No | - |
| approvedById | String? |
|
No | - |
| brandTemplate | BrandTemplate |
|
Yes | - |
| brandTemplateId | String |
|
Yes | - |
Find zero or one ClientEdit
// Get one ClientEdit
const clientEdit = await prisma.clientEdit.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientEditWhereUniqueInput | Yes |
Find first ClientEdit
// Get one ClientEdit
const clientEdit = await prisma.clientEdit.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientEditWhereInput | No |
| orderBy | ClientEditOrderByWithRelationInput[] | ClientEditOrderByWithRelationInput | No |
| cursor | ClientEditWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ClientEditScalarFieldEnum | ClientEditScalarFieldEnum[] | No |
Find zero or more ClientEdit
// Get all ClientEdit
const ClientEdit = await prisma.clientEdit.findMany()
// Get first 10 ClientEdit
const ClientEdit = await prisma.clientEdit.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ClientEditWhereInput | No |
| orderBy | ClientEditOrderByWithRelationInput[] | ClientEditOrderByWithRelationInput | No |
| cursor | ClientEditWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ClientEditScalarFieldEnum | ClientEditScalarFieldEnum[] | No |
Create one ClientEdit
// Create one ClientEdit
const ClientEdit = await prisma.clientEdit.create({
data: {
// ... data to create a ClientEdit
}
})
| Name | Type | Required |
|---|---|---|
| data | ClientEditCreateInput | ClientEditUncheckedCreateInput | Yes |
Delete one ClientEdit
// Delete one ClientEdit
const ClientEdit = await prisma.clientEdit.delete({
where: {
// ... filter to delete one ClientEdit
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientEditWhereUniqueInput | Yes |
Update one ClientEdit
// Update one ClientEdit
const clientEdit = await prisma.clientEdit.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ClientEditUpdateInput | ClientEditUncheckedUpdateInput | Yes |
| where | ClientEditWhereUniqueInput | Yes |
Delete zero or more ClientEdit
// Delete a few ClientEdit
const { count } = await prisma.clientEdit.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientEditWhereInput | No |
Update zero or one ClientEdit
const { count } = await prisma.clientEdit.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ClientEditUpdateManyMutationInput | ClientEditUncheckedUpdateManyInput | Yes |
| where | ClientEditWhereInput | No |
Create or update one ClientEdit
// Update or create a ClientEdit
const clientEdit = await prisma.clientEdit.upsert({
create: {
// ... data to create a ClientEdit
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ClientEdit we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientEditWhereUniqueInput | Yes |
| create | ClientEditCreateInput | ClientEditUncheckedCreateInput | Yes |
| update | ClientEditUpdateInput | ClientEditUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| client_id | String |
|
Yes | - |
| rating | Int |
|
Yes | - |
| goodImplematation | Boolean? |
|
No | - |
| comment | String? |
|
No | - |
| brandTemplate | BrandTemplate |
|
Yes | - |
| brandTemplateId | String |
|
Yes | - |
Find zero or one ClientRating
// Get one ClientRating
const clientRating = await prisma.clientRating.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientRatingWhereUniqueInput | Yes |
Find first ClientRating
// Get one ClientRating
const clientRating = await prisma.clientRating.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientRatingWhereInput | No |
| orderBy | ClientRatingOrderByWithRelationInput[] | ClientRatingOrderByWithRelationInput | No |
| cursor | ClientRatingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ClientRatingScalarFieldEnum | ClientRatingScalarFieldEnum[] | No |
Find zero or more ClientRating
// Get all ClientRating
const ClientRating = await prisma.clientRating.findMany()
// Get first 10 ClientRating
const ClientRating = await prisma.clientRating.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ClientRatingWhereInput | No |
| orderBy | ClientRatingOrderByWithRelationInput[] | ClientRatingOrderByWithRelationInput | No |
| cursor | ClientRatingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ClientRatingScalarFieldEnum | ClientRatingScalarFieldEnum[] | No |
Create one ClientRating
// Create one ClientRating
const ClientRating = await prisma.clientRating.create({
data: {
// ... data to create a ClientRating
}
})
| Name | Type | Required |
|---|---|---|
| data | ClientRatingCreateInput | ClientRatingUncheckedCreateInput | Yes |
Delete one ClientRating
// Delete one ClientRating
const ClientRating = await prisma.clientRating.delete({
where: {
// ... filter to delete one ClientRating
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientRatingWhereUniqueInput | Yes |
Update one ClientRating
// Update one ClientRating
const clientRating = await prisma.clientRating.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ClientRatingUpdateInput | ClientRatingUncheckedUpdateInput | Yes |
| where | ClientRatingWhereUniqueInput | Yes |
Delete zero or more ClientRating
// Delete a few ClientRating
const { count } = await prisma.clientRating.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientRatingWhereInput | No |
Update zero or one ClientRating
const { count } = await prisma.clientRating.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ClientRatingUpdateManyMutationInput | ClientRatingUncheckedUpdateManyInput | Yes |
| where | ClientRatingWhereInput | No |
Create or update one ClientRating
// Update or create a ClientRating
const clientRating = await prisma.clientRating.upsert({
create: {
// ... data to create a ClientRating
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ClientRating we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ClientRatingWhereUniqueInput | Yes |
| create | ClientRatingCreateInput | ClientRatingUncheckedCreateInput | Yes |
| update | ClientRatingUpdateInput | ClientRatingUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| number | String |
|
Yes | - |
| brandTemplate | BrandTemplate |
|
Yes | - |
| brandTemplateId | String |
|
Yes | - |
Find zero or one Tel
// Get one Tel
const tel = await prisma.tel.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TelWhereUniqueInput | Yes |
Find first Tel
// Get one Tel
const tel = await prisma.tel.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TelWhereInput | No |
| orderBy | TelOrderByWithRelationInput[] | TelOrderByWithRelationInput | No |
| cursor | TelWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TelScalarFieldEnum | TelScalarFieldEnum[] | No |
Find zero or more Tel
// Get all Tel
const Tel = await prisma.tel.findMany()
// Get first 10 Tel
const Tel = await prisma.tel.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TelWhereInput | No |
| orderBy | TelOrderByWithRelationInput[] | TelOrderByWithRelationInput | No |
| cursor | TelWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TelScalarFieldEnum | TelScalarFieldEnum[] | No |
Create one Tel
// Create one Tel
const Tel = await prisma.tel.create({
data: {
// ... data to create a Tel
}
})
| Name | Type | Required |
|---|---|---|
| data | TelCreateInput | TelUncheckedCreateInput | Yes |
Delete one Tel
// Delete one Tel
const Tel = await prisma.tel.delete({
where: {
// ... filter to delete one Tel
}
})
| Name | Type | Required |
|---|---|---|
| where | TelWhereUniqueInput | Yes |
Update one Tel
// Update one Tel
const tel = await prisma.tel.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TelUpdateInput | TelUncheckedUpdateInput | Yes |
| where | TelWhereUniqueInput | Yes |
Delete zero or more Tel
// Delete a few Tel
const { count } = await prisma.tel.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TelWhereInput | No |
Update zero or one Tel
const { count } = await prisma.tel.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TelUpdateManyMutationInput | TelUncheckedUpdateManyInput | Yes |
| where | TelWhereInput | No |
Create or update one Tel
// Update or create a Tel
const tel = await prisma.tel.upsert({
create: {
// ... data to create a Tel
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Tel we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TelWhereUniqueInput | Yes |
| create | TelCreateInput | TelUncheckedCreateInput | Yes |
| update | TelUpdateInput | TelUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| description | String? |
|
No | - |
| tags | String[] |
|
Yes | - |
| image | Image? |
|
No | - |
| imageId | String? |
|
No | - |
| threeDImage | String? |
|
No | - |
| video | String? |
|
No | - |
| sizes | String[] |
|
Yes | - |
| units | String[] |
|
Yes | - |
| category | Category |
|
Yes | - |
| categoryId | String |
|
Yes | - |
| addon_categories | String[] |
|
Yes | - |
| varieties | String[] |
|
Yes | - |
| manufacturer | String |
|
Yes | - |
| street_address | String? |
|
No | - |
| city | String? |
|
No | - |
| country | Country? |
|
No | - |
| countryId | String? |
|
No | - |
| String? |
|
No | - | |
| telNumbers | Tel[] |
|
Yes | - |
| website | String? |
|
No | - |
| draftNotes | String? |
|
No | - |
| draftType | String? |
|
No | - |
| draftCreatedAt | DateTime |
|
Yes | - |
| createdBy | User? |
|
No | - |
| createdById | String? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| reviewedAt | DateTime? |
|
No | - |
| reviewNotes | String? |
|
No | - |
| reviewer | User? |
|
No | - |
| reviewerId | String? |
|
No | - |
| inReview | Boolean? |
|
No | - |
| isApproved | Boolean? |
|
No | - |
| lastModified | DateTime |
|
Yes | - |
| client_edits | ClientEdit[] |
|
Yes | - |
| creatorClientId | String? |
|
No | - |
| creatorClientProductId | String? |
|
No | - |
| fromClientCleanedBy | String? |
|
No | - |
| implementationRatings | ClientRating[] |
|
Yes | - |
| hasZeroDepositOrder | Boolean? |
|
No | - |
| hasTransparencyAll | Boolean? |
|
No | - |
| isNotForUnder18 | Boolean? |
|
No | - |
| isDirty | Boolean? |
|
No | - |
Find zero or one BrandTemplate
// Get one BrandTemplate
const brandTemplate = await prisma.brandTemplate.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | Yes |
Find first BrandTemplate
// Get one BrandTemplate
const brandTemplate = await prisma.brandTemplate.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BrandTemplateWhereInput | No |
| orderBy | BrandTemplateOrderByWithRelationInput[] | BrandTemplateOrderByWithRelationInput | No |
| cursor | BrandTemplateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BrandTemplateScalarFieldEnum | BrandTemplateScalarFieldEnum[] | No |
Find zero or more BrandTemplate
// Get all BrandTemplate
const BrandTemplate = await prisma.brandTemplate.findMany()
// Get first 10 BrandTemplate
const BrandTemplate = await prisma.brandTemplate.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BrandTemplateWhereInput | No |
| orderBy | BrandTemplateOrderByWithRelationInput[] | BrandTemplateOrderByWithRelationInput | No |
| cursor | BrandTemplateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BrandTemplateScalarFieldEnum | BrandTemplateScalarFieldEnum[] | No |
Create one BrandTemplate
// Create one BrandTemplate
const BrandTemplate = await prisma.brandTemplate.create({
data: {
// ... data to create a BrandTemplate
}
})
| Name | Type | Required |
|---|---|---|
| data | BrandTemplateCreateInput | BrandTemplateUncheckedCreateInput | Yes |
Delete one BrandTemplate
// Delete one BrandTemplate
const BrandTemplate = await prisma.brandTemplate.delete({
where: {
// ... filter to delete one BrandTemplate
}
})
| Name | Type | Required |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | Yes |
Update one BrandTemplate
// Update one BrandTemplate
const brandTemplate = await prisma.brandTemplate.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BrandTemplateUpdateInput | BrandTemplateUncheckedUpdateInput | Yes |
| where | BrandTemplateWhereUniqueInput | Yes |
Delete zero or more BrandTemplate
// Delete a few BrandTemplate
const { count } = await prisma.brandTemplate.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BrandTemplateWhereInput | No |
Update zero or one BrandTemplate
const { count } = await prisma.brandTemplate.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyInput | Yes |
| where | BrandTemplateWhereInput | No |
Create or update one BrandTemplate
// Update or create a BrandTemplate
const brandTemplate = await prisma.brandTemplate.upsert({
create: {
// ... data to create a BrandTemplate
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BrandTemplate we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | Yes |
| create | BrandTemplateCreateInput | BrandTemplateUncheckedCreateInput | Yes |
| update | BrandTemplateUpdateInput | BrandTemplateUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | IndustryWhereInput | IndustryWhereInput[] | No |
| OR | IndustryWhereInput[] | No |
| NOT | IndustryWhereInput | IndustryWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| promotions | PromotionListRelationFilter | No |
| categories | CategoryListRelationFilter | No |
| features | FeatureListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| promotions | PromotionOrderByRelationAggregateInput | No |
| categories | CategoryOrderByRelationAggregateInput | No |
| features | FeatureOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| AND | IndustryWhereInput | IndustryWhereInput[] | No |
| OR | IndustryWhereInput[] | No |
| NOT | IndustryWhereInput | IndustryWhereInput[] | No |
| promotions | PromotionListRelationFilter | No |
| categories | CategoryListRelationFilter | No |
| features | FeatureListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| _count | IndustryCountOrderByAggregateInput | No |
| _max | IndustryMaxOrderByAggregateInput | No |
| _min | IndustryMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | IndustryScalarWhereWithAggregatesInput | IndustryScalarWhereWithAggregatesInput[] | No |
| OR | IndustryScalarWhereWithAggregatesInput[] | No |
| NOT | IndustryScalarWhereWithAggregatesInput | IndustryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CountryWhereInput | CountryWhereInput[] | No |
| OR | CountryWhereInput[] | No |
| NOT | CountryWhereInput | CountryWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| user | UserListRelationFilter | No |
| promotions | PromotionListRelationFilter | No |
| brandTemplate | BrandTemplateListRelationFilter | No |
| features | FeatureListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user | UserOrderByRelationAggregateInput | No |
| promotions | PromotionOrderByRelationAggregateInput | No |
| brandTemplate | BrandTemplateOrderByRelationAggregateInput | No |
| features | FeatureOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| AND | CountryWhereInput | CountryWhereInput[] | No |
| OR | CountryWhereInput[] | No |
| NOT | CountryWhereInput | CountryWhereInput[] | No |
| user | UserListRelationFilter | No |
| promotions | PromotionListRelationFilter | No |
| brandTemplate | BrandTemplateListRelationFilter | No |
| features | FeatureListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| _count | CountryCountOrderByAggregateInput | No |
| _max | CountryMaxOrderByAggregateInput | No |
| _min | CountryMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CountryScalarWhereWithAggregatesInput | CountryScalarWhereWithAggregatesInput[] | No |
| OR | CountryScalarWhereWithAggregatesInput[] | No |
| NOT | CountryScalarWhereWithAggregatesInput | CountryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| String | No | |
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| name | StringFilter | String | No |
| password | StringNullableFilter | String | Null | Yes |
| token | StringNullableFilter | String | Null | Yes |
| fcm_token | StringNullableFilter | String | Null | Yes |
| avatar | StringNullableFilter | String | Null | Yes |
| roleId | StringNullableFilter | String | Null | Yes |
| suspendendAt | DateTimeNullableFilter | DateTime | Null | Yes |
| status | EnumUserStatusNullableFilter | UserStatus | Null | Yes |
| streetAddress | StringNullableFilter | String | Null | Yes |
| city | StringNullableFilter | String | Null | Yes |
| cell | StringNullableFilter | String | Null | Yes |
| tell | StringNullableFilter | String | Null | Yes |
| verificationCode | IntNullableFilter | Int | Null | Yes |
| countryId | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| role | RoleNullableRelationFilter | RoleWhereInput | Null | Yes |
| country | CountryNullableRelationFilter | CountryWhereInput | Null | Yes |
| teams | TeamListRelationFilter | No |
| assignedTasks | TaskListRelationFilter | No |
| createdTasks | TaskListRelationFilter | No |
| promotion | PromotionListRelationFilter | No |
| payment | PaymentListRelationFilter | No |
| createdTemplates | BrandTemplateListRelationFilter | No |
| reviewedTemplates | BrandTemplateListRelationFilter | No |
| clientEdits | ClientEditListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | SortOrderInput | No |
| token | SortOrder | SortOrderInput | No |
| fcm_token | SortOrder | SortOrderInput | No |
| avatar | SortOrder | SortOrderInput | No |
| roleId | SortOrder | SortOrderInput | No |
| suspendendAt | SortOrder | SortOrderInput | No |
| status | SortOrder | SortOrderInput | No |
| streetAddress | SortOrder | SortOrderInput | No |
| city | SortOrder | SortOrderInput | No |
| cell | SortOrder | SortOrderInput | No |
| tell | SortOrder | SortOrderInput | No |
| verificationCode | SortOrder | SortOrderInput | No |
| countryId | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| _count | UserCountOrderByAggregateInput | No |
| _avg | UserAvgOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| _sum | UserSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RoleWhereInput | RoleWhereInput[] | No |
| OR | RoleWhereInput[] | No |
| NOT | RoleWhereInput | RoleWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| permissions | PermissionsListRelationFilter | No |
| user | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| permissions | PermissionsOrderByRelationAggregateInput | No |
| user | UserOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| AND | RoleWhereInput | RoleWhereInput[] | No |
| OR | RoleWhereInput[] | No |
| NOT | RoleWhereInput | RoleWhereInput[] | No |
| description | StringNullableFilter | String | Null | Yes |
| permissions | PermissionsListRelationFilter | No |
| user | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| _count | RoleCountOrderByAggregateInput | No |
| _max | RoleMaxOrderByAggregateInput | No |
| _min | RoleMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RoleScalarWhereWithAggregatesInput | RoleScalarWhereWithAggregatesInput[] | No |
| OR | RoleScalarWhereWithAggregatesInput[] | No |
| NOT | RoleScalarWhereWithAggregatesInput | RoleScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PermissionsWhereInput | PermissionsWhereInput[] | No |
| OR | PermissionsWhereInput[] | No |
| NOT | PermissionsWhereInput | PermissionsWhereInput[] | No |
| id | StringFilter | String | No |
| domain | StringFilter | String | No |
| accessLevel | EnumPermissionTypesFilter | PermissionTypes | No |
| Role | RoleListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| domain | SortOrder | No |
| accessLevel | SortOrder | No |
| Role | RoleOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| domain | String | No |
| AND | PermissionsWhereInput | PermissionsWhereInput[] | No |
| OR | PermissionsWhereInput[] | No |
| NOT | PermissionsWhereInput | PermissionsWhereInput[] | No |
| accessLevel | EnumPermissionTypesFilter | PermissionTypes | No |
| Role | RoleListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| domain | SortOrder | No |
| accessLevel | SortOrder | No |
| _count | PermissionsCountOrderByAggregateInput | No |
| _max | PermissionsMaxOrderByAggregateInput | No |
| _min | PermissionsMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PermissionsScalarWhereWithAggregatesInput | PermissionsScalarWhereWithAggregatesInput[] | No |
| OR | PermissionsScalarWhereWithAggregatesInput[] | No |
| NOT | PermissionsScalarWhereWithAggregatesInput | PermissionsScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| domain | StringWithAggregatesFilter | String | No |
| accessLevel | EnumPermissionTypesWithAggregatesFilter | PermissionTypes | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamWhereInput | TeamWhereInput[] | No |
| OR | TeamWhereInput[] | No |
| NOT | TeamWhereInput | TeamWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| leader | StringFilter | String | No |
| userId | StringNullableFilter | String | Null | Yes |
| user | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| goals | GoalListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| leader | SortOrder | No |
| userId | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| goals | GoalOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | TeamWhereInput | TeamWhereInput[] | No |
| OR | TeamWhereInput[] | No |
| NOT | TeamWhereInput | TeamWhereInput[] | No |
| name | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| leader | StringFilter | String | No |
| userId | StringNullableFilter | String | Null | Yes |
| user | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| goals | GoalListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| leader | SortOrder | No |
| userId | SortOrder | SortOrderInput | No |
| _count | TeamCountOrderByAggregateInput | No |
| _max | TeamMaxOrderByAggregateInput | No |
| _min | TeamMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamScalarWhereWithAggregatesInput | TeamScalarWhereWithAggregatesInput[] | No |
| OR | TeamScalarWhereWithAggregatesInput[] | No |
| NOT | TeamScalarWhereWithAggregatesInput | TeamScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| leader | StringWithAggregatesFilter | String | No |
| userId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | GoalWhereInput | GoalWhereInput[] | No |
| OR | GoalWhereInput[] | No |
| NOT | GoalWhereInput | GoalWhereInput[] | No |
| id | StringFilter | String | No |
| title | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| startDate | DateTimeNullableFilter | DateTime | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| deadline | DateTimeNullableFilter | DateTime | Null | Yes |
| active | BoolNullableFilter | Boolean | Null | Yes |
| isComplete | BoolNullableFilter | Boolean | Null | Yes |
| teams | TeamListRelationFilter | No |
| tasks | TaskListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| startDate | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| deadline | SortOrder | SortOrderInput | No |
| active | SortOrder | SortOrderInput | No |
| isComplete | SortOrder | SortOrderInput | No |
| teams | TeamOrderByRelationAggregateInput | No |
| tasks | TaskOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| AND | GoalWhereInput | GoalWhereInput[] | No |
| OR | GoalWhereInput[] | No |
| NOT | GoalWhereInput | GoalWhereInput[] | No |
| description | StringNullableFilter | String | Null | Yes |
| startDate | DateTimeNullableFilter | DateTime | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| deadline | DateTimeNullableFilter | DateTime | Null | Yes |
| active | BoolNullableFilter | Boolean | Null | Yes |
| isComplete | BoolNullableFilter | Boolean | Null | Yes |
| teams | TeamListRelationFilter | No |
| tasks | TaskListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| startDate | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| deadline | SortOrder | SortOrderInput | No |
| active | SortOrder | SortOrderInput | No |
| isComplete | SortOrder | SortOrderInput | No |
| _count | GoalCountOrderByAggregateInput | No |
| _max | GoalMaxOrderByAggregateInput | No |
| _min | GoalMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GoalScalarWhereWithAggregatesInput | GoalScalarWhereWithAggregatesInput[] | No |
| OR | GoalScalarWhereWithAggregatesInput[] | No |
| NOT | GoalScalarWhereWithAggregatesInput | GoalScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| title | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| startDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| deadline | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| active | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| isComplete | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | TaskWhereInput | TaskWhereInput[] | No |
| OR | TaskWhereInput[] | No |
| NOT | TaskWhereInput | TaskWhereInput[] | No |
| id | StringFilter | String | No |
| title | StringFilter | String | No |
| comments | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| startDate | DateTimeNullableFilter | DateTime | Null | Yes |
| dueDate | DateTimeNullableFilter | DateTime | Null | Yes |
| priority | EnumTaskPriorityNullableFilter | TaskPriority | Null | Yes |
| stage | EnumTaskStageNullableFilter | TaskStage | Null | Yes |
| GoalId | StringNullableFilter | String | Null | Yes |
| assigneeId | StringNullableFilter | String | Null | Yes |
| createdById | StringNullableFilter | String | Null | Yes |
| Goal | GoalNullableRelationFilter | GoalWhereInput | Null | Yes |
| assignee | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| createdBy | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| comments | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| startDate | SortOrder | SortOrderInput | No |
| dueDate | SortOrder | SortOrderInput | No |
| priority | SortOrder | SortOrderInput | No |
| stage | SortOrder | SortOrderInput | No |
| GoalId | SortOrder | SortOrderInput | No |
| assigneeId | SortOrder | SortOrderInput | No |
| createdById | SortOrder | SortOrderInput | No |
| Goal | GoalOrderByWithRelationInput | No |
| assignee | UserOrderByWithRelationInput | No |
| createdBy | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| AND | TaskWhereInput | TaskWhereInput[] | No |
| OR | TaskWhereInput[] | No |
| NOT | TaskWhereInput | TaskWhereInput[] | No |
| comments | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| startDate | DateTimeNullableFilter | DateTime | Null | Yes |
| dueDate | DateTimeNullableFilter | DateTime | Null | Yes |
| priority | EnumTaskPriorityNullableFilter | TaskPriority | Null | Yes |
| stage | EnumTaskStageNullableFilter | TaskStage | Null | Yes |
| GoalId | StringNullableFilter | String | Null | Yes |
| assigneeId | StringNullableFilter | String | Null | Yes |
| createdById | StringNullableFilter | String | Null | Yes |
| Goal | GoalNullableRelationFilter | GoalWhereInput | Null | Yes |
| assignee | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| createdBy | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| comments | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| startDate | SortOrder | SortOrderInput | No |
| dueDate | SortOrder | SortOrderInput | No |
| priority | SortOrder | SortOrderInput | No |
| stage | SortOrder | SortOrderInput | No |
| GoalId | SortOrder | SortOrderInput | No |
| assigneeId | SortOrder | SortOrderInput | No |
| createdById | SortOrder | SortOrderInput | No |
| _count | TaskCountOrderByAggregateInput | No |
| _max | TaskMaxOrderByAggregateInput | No |
| _min | TaskMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TaskScalarWhereWithAggregatesInput | TaskScalarWhereWithAggregatesInput[] | No |
| OR | TaskScalarWhereWithAggregatesInput[] | No |
| NOT | TaskScalarWhereWithAggregatesInput | TaskScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| title | StringWithAggregatesFilter | String | No |
| comments | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| startDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| dueDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| priority | EnumTaskPriorityNullableWithAggregatesFilter | TaskPriority | Null | Yes |
| stage | EnumTaskStageNullableWithAggregatesFilter | TaskStage | Null | Yes |
| GoalId | StringNullableWithAggregatesFilter | String | Null | Yes |
| assigneeId | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdById | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | FeatureWhereInput | FeatureWhereInput[] | No |
| OR | FeatureWhereInput[] | No |
| NOT | FeatureWhereInput | FeatureWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| type | EnumFeatureTypeFilter | FeatureType | No |
| industries | IndustryListRelationFilter | No |
| countries | CountryListRelationFilter | No |
| promotions | PromotionListRelationFilter | No |
| packages | PackageListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| industries | IndustryOrderByRelationAggregateInput | No |
| countries | CountryOrderByRelationAggregateInput | No |
| promotions | PromotionOrderByRelationAggregateInput | No |
| packages | PackageOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| AND | FeatureWhereInput | FeatureWhereInput[] | No |
| OR | FeatureWhereInput[] | No |
| NOT | FeatureWhereInput | FeatureWhereInput[] | No |
| description | StringNullableFilter | String | Null | Yes |
| type | EnumFeatureTypeFilter | FeatureType | No |
| industries | IndustryListRelationFilter | No |
| countries | CountryListRelationFilter | No |
| promotions | PromotionListRelationFilter | No |
| packages | PackageListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| _count | FeatureCountOrderByAggregateInput | No |
| _max | FeatureMaxOrderByAggregateInput | No |
| _min | FeatureMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FeatureScalarWhereWithAggregatesInput | FeatureScalarWhereWithAggregatesInput[] | No |
| OR | FeatureScalarWhereWithAggregatesInput[] | No |
| NOT | FeatureScalarWhereWithAggregatesInput | FeatureScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| type | EnumFeatureTypeWithAggregatesFilter | FeatureType | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PackageWhereInput | PackageWhereInput[] | No |
| OR | PackageWhereInput[] | No |
| NOT | PackageWhereInput | PackageWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| color | StringNullableFilter | String | Null | Yes |
| level | IntFilter | Int | No |
| prices | PackagePriceListRelationFilter | No |
| features | FeatureListRelationFilter | No |
| promotions | PromotionListRelationFilter | No |
| payment | PaymentListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| color | SortOrder | SortOrderInput | No |
| level | SortOrder | No |
| prices | PackagePriceOrderByRelationAggregateInput | No |
| features | FeatureOrderByRelationAggregateInput | No |
| promotions | PromotionOrderByRelationAggregateInput | No |
| payment | PaymentOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| level | Int | No |
| AND | PackageWhereInput | PackageWhereInput[] | No |
| OR | PackageWhereInput[] | No |
| NOT | PackageWhereInput | PackageWhereInput[] | No |
| description | StringNullableFilter | String | Null | Yes |
| color | StringNullableFilter | String | Null | Yes |
| prices | PackagePriceListRelationFilter | No |
| features | FeatureListRelationFilter | No |
| promotions | PromotionListRelationFilter | No |
| payment | PaymentListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| color | SortOrder | SortOrderInput | No |
| level | SortOrder | No |
| _count | PackageCountOrderByAggregateInput | No |
| _avg | PackageAvgOrderByAggregateInput | No |
| _max | PackageMaxOrderByAggregateInput | No |
| _min | PackageMinOrderByAggregateInput | No |
| _sum | PackageSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PackageScalarWhereWithAggregatesInput | PackageScalarWhereWithAggregatesInput[] | No |
| OR | PackageScalarWhereWithAggregatesInput[] | No |
| NOT | PackageScalarWhereWithAggregatesInput | PackageScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| color | StringNullableWithAggregatesFilter | String | Null | Yes |
| level | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PackagePriceWhereInput | PackagePriceWhereInput[] | No |
| OR | PackagePriceWhereInput[] | No |
| NOT | PackagePriceWhereInput | PackagePriceWhereInput[] | No |
| id | StringFilter | String | No |
| duration | FloatFilter | Float | No |
| amount | FloatFilter | Float | No |
| extentionTime | FloatNullableFilter | Float | Null | Yes |
| packageId | StringNullableFilter | String | Null | Yes |
| Package | PackageNullableRelationFilter | PackageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| duration | SortOrder | No |
| amount | SortOrder | No |
| extentionTime | SortOrder | SortOrderInput | No |
| packageId | SortOrder | SortOrderInput | No |
| Package | PackageOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | PackagePriceWhereInput | PackagePriceWhereInput[] | No |
| OR | PackagePriceWhereInput[] | No |
| NOT | PackagePriceWhereInput | PackagePriceWhereInput[] | No |
| duration | FloatFilter | Float | No |
| amount | FloatFilter | Float | No |
| extentionTime | FloatNullableFilter | Float | Null | Yes |
| packageId | StringNullableFilter | String | Null | Yes |
| Package | PackageNullableRelationFilter | PackageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| duration | SortOrder | No |
| amount | SortOrder | No |
| extentionTime | SortOrder | SortOrderInput | No |
| packageId | SortOrder | SortOrderInput | No |
| _count | PackagePriceCountOrderByAggregateInput | No |
| _avg | PackagePriceAvgOrderByAggregateInput | No |
| _max | PackagePriceMaxOrderByAggregateInput | No |
| _min | PackagePriceMinOrderByAggregateInput | No |
| _sum | PackagePriceSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PackagePriceScalarWhereWithAggregatesInput | PackagePriceScalarWhereWithAggregatesInput[] | No |
| OR | PackagePriceScalarWhereWithAggregatesInput[] | No |
| NOT | PackagePriceScalarWhereWithAggregatesInput | PackagePriceScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| duration | FloatWithAggregatesFilter | Float | No |
| amount | FloatWithAggregatesFilter | Float | No |
| extentionTime | FloatNullableWithAggregatesFilter | Float | Null | Yes |
| packageId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PromotionWhereInput | PromotionWhereInput[] | No |
| OR | PromotionWhereInput[] | No |
| NOT | PromotionWhereInput | PromotionWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| startDate | DateTimeFilter | DateTime | No |
| endDate | DateTimeFilter | DateTime | No |
| createdById | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| features | FeatureListRelationFilter | No |
| industries | IndustryListRelationFilter | No |
| countries | CountryListRelationFilter | No |
| packages | PackageListRelationFilter | No |
| createdBy | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdById | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| features | FeatureOrderByRelationAggregateInput | No |
| industries | IndustryOrderByRelationAggregateInput | No |
| countries | CountryOrderByRelationAggregateInput | No |
| packages | PackageOrderByRelationAggregateInput | No |
| createdBy | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | PromotionWhereInput | PromotionWhereInput[] | No |
| OR | PromotionWhereInput[] | No |
| NOT | PromotionWhereInput | PromotionWhereInput[] | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| startDate | DateTimeFilter | DateTime | No |
| endDate | DateTimeFilter | DateTime | No |
| createdById | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| features | FeatureListRelationFilter | No |
| industries | IndustryListRelationFilter | No |
| countries | CountryListRelationFilter | No |
| packages | PackageListRelationFilter | No |
| createdBy | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdById | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| _count | PromotionCountOrderByAggregateInput | No |
| _max | PromotionMaxOrderByAggregateInput | No |
| _min | PromotionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PromotionScalarWhereWithAggregatesInput | PromotionScalarWhereWithAggregatesInput[] | No |
| OR | PromotionScalarWhereWithAggregatesInput[] | No |
| NOT | PromotionScalarWhereWithAggregatesInput | PromotionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| startDate | DateTimeWithAggregatesFilter | DateTime | No |
| endDate | DateTimeWithAggregatesFilter | DateTime | No |
| createdById | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentWhereInput | PaymentWhereInput[] | No |
| OR | PaymentWhereInput[] | No |
| NOT | PaymentWhereInput | PaymentWhereInput[] | No |
| id | StringFilter | String | No |
| amount | DecimalFilter | Decimal | No |
| date | DateTimeFilter | DateTime | No |
| center | StringNullableFilter | String | Null | Yes |
| packageId | StringFilter | String | No |
| paymentMethod | StringFilter | String | No |
| cashierId | StringFilter | String | No |
| revoked | BoolNullableFilter | Boolean | Null | Yes |
| createAt | DateTimeFilter | DateTime | No |
| package | PackageRelationFilter | PackageWhereInput | No |
| cashier | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| amount | SortOrder | No |
| date | SortOrder | No |
| center | SortOrder | SortOrderInput | No |
| packageId | SortOrder | No |
| paymentMethod | SortOrder | No |
| cashierId | SortOrder | No |
| revoked | SortOrder | SortOrderInput | No |
| createAt | SortOrder | No |
| package | PackageOrderByWithRelationInput | No |
| cashier | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | PaymentWhereInput | PaymentWhereInput[] | No |
| OR | PaymentWhereInput[] | No |
| NOT | PaymentWhereInput | PaymentWhereInput[] | No |
| amount | DecimalFilter | Decimal | No |
| date | DateTimeFilter | DateTime | No |
| center | StringNullableFilter | String | Null | Yes |
| packageId | StringFilter | String | No |
| paymentMethod | StringFilter | String | No |
| cashierId | StringFilter | String | No |
| revoked | BoolNullableFilter | Boolean | Null | Yes |
| createAt | DateTimeFilter | DateTime | No |
| package | PackageRelationFilter | PackageWhereInput | No |
| cashier | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| amount | SortOrder | No |
| date | SortOrder | No |
| center | SortOrder | SortOrderInput | No |
| packageId | SortOrder | No |
| paymentMethod | SortOrder | No |
| cashierId | SortOrder | No |
| revoked | SortOrder | SortOrderInput | No |
| createAt | SortOrder | No |
| _count | PaymentCountOrderByAggregateInput | No |
| _avg | PaymentAvgOrderByAggregateInput | No |
| _max | PaymentMaxOrderByAggregateInput | No |
| _min | PaymentMinOrderByAggregateInput | No |
| _sum | PaymentSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentScalarWhereWithAggregatesInput | PaymentScalarWhereWithAggregatesInput[] | No |
| OR | PaymentScalarWhereWithAggregatesInput[] | No |
| NOT | PaymentScalarWhereWithAggregatesInput | PaymentScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| amount | DecimalWithAggregatesFilter | Decimal | No |
| date | DateTimeWithAggregatesFilter | DateTime | No |
| center | StringNullableWithAggregatesFilter | String | Null | Yes |
| packageId | StringWithAggregatesFilter | String | No |
| paymentMethod | StringWithAggregatesFilter | String | No |
| cashierId | StringWithAggregatesFilter | String | No |
| revoked | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| createAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryWhereInput | CategoryWhereInput[] | No |
| OR | CategoryWhereInput[] | No |
| NOT | CategoryWhereInput | CategoryWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| icon | StringNullableFilter | String | Null | Yes |
| createdBy | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| industries | IndustryListRelationFilter | No |
| brandTemplate | BrandTemplateListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| icon | SortOrder | SortOrderInput | No |
| createdBy | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| industries | IndustryOrderByRelationAggregateInput | No |
| brandTemplate | BrandTemplateOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| AND | CategoryWhereInput | CategoryWhereInput[] | No |
| OR | CategoryWhereInput[] | No |
| NOT | CategoryWhereInput | CategoryWhereInput[] | No |
| description | StringNullableFilter | String | Null | Yes |
| icon | StringNullableFilter | String | Null | Yes |
| createdBy | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| industries | IndustryListRelationFilter | No |
| brandTemplate | BrandTemplateListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| icon | SortOrder | SortOrderInput | No |
| createdBy | SortOrder | SortOrderInput | No |
| createdAt | SortOrder | No |
| _count | CategoryCountOrderByAggregateInput | No |
| _max | CategoryMaxOrderByAggregateInput | No |
| _min | CategoryMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| OR | CategoryScalarWhereWithAggregatesInput[] | No |
| NOT | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| icon | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdBy | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ImageWhereInput | ImageWhereInput[] | No |
| OR | ImageWhereInput[] | No |
| NOT | ImageWhereInput | ImageWhereInput[] | No |
| id | StringFilter | String | No |
| url | StringFilter | String | No |
| incomplete | BoolNullableFilter | Boolean | Null | Yes |
| incompleteMessage | StringNullableFilter | String | Null | Yes |
| isTransparent | BoolNullableFilter | Boolean | Null | Yes |
| side | EnumImageSideFilter | ImageSide | No |
| brandTemplate | BrandTemplateListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| incomplete | SortOrder | SortOrderInput | No |
| incompleteMessage | SortOrder | SortOrderInput | No |
| isTransparent | SortOrder | SortOrderInput | No |
| side | SortOrder | No |
| brandTemplate | BrandTemplateOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| AND | ImageWhereInput | ImageWhereInput[] | No |
| OR | ImageWhereInput[] | No |
| NOT | ImageWhereInput | ImageWhereInput[] | No |
| incomplete | BoolNullableFilter | Boolean | Null | Yes |
| incompleteMessage | StringNullableFilter | String | Null | Yes |
| isTransparent | BoolNullableFilter | Boolean | Null | Yes |
| side | EnumImageSideFilter | ImageSide | No |
| brandTemplate | BrandTemplateListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| incomplete | SortOrder | SortOrderInput | No |
| incompleteMessage | SortOrder | SortOrderInput | No |
| isTransparent | SortOrder | SortOrderInput | No |
| side | SortOrder | No |
| _count | ImageCountOrderByAggregateInput | No |
| _max | ImageMaxOrderByAggregateInput | No |
| _min | ImageMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ImageScalarWhereWithAggregatesInput | ImageScalarWhereWithAggregatesInput[] | No |
| OR | ImageScalarWhereWithAggregatesInput[] | No |
| NOT | ImageScalarWhereWithAggregatesInput | ImageScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| url | StringWithAggregatesFilter | String | No |
| incomplete | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| incompleteMessage | StringNullableWithAggregatesFilter | String | Null | Yes |
| isTransparent | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| side | EnumImageSideWithAggregatesFilter | ImageSide | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ClientEditWhereInput | ClientEditWhereInput[] | No |
| OR | ClientEditWhereInput[] | No |
| NOT | ClientEditWhereInput | ClientEditWhereInput[] | No |
| id | StringFilter | String | No |
| clientId | StringNullableFilter | String | Null | Yes |
| action | EnumClientEditActionFilter | ClientEditAction | No |
| field | StringFilter | String | No |
| newValue | StringFilter | String | No |
| oldValue | StringFilter | String | No |
| approved | BoolNullableFilter | Boolean | Null | Yes |
| approvedTime | DateTimeNullableFilter | DateTime | Null | Yes |
| approvedById | StringNullableFilter | String | Null | Yes |
| brandTemplateId | StringFilter | String | No |
| approvedBy | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| brandTemplate | BrandTemplateRelationFilter | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| clientId | SortOrder | SortOrderInput | No |
| action | SortOrder | No |
| field | SortOrder | No |
| newValue | SortOrder | No |
| oldValue | SortOrder | No |
| approved | SortOrder | SortOrderInput | No |
| approvedTime | SortOrder | SortOrderInput | No |
| approvedById | SortOrder | SortOrderInput | No |
| brandTemplateId | SortOrder | No |
| approvedBy | UserOrderByWithRelationInput | No |
| brandTemplate | BrandTemplateOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | ClientEditWhereInput | ClientEditWhereInput[] | No |
| OR | ClientEditWhereInput[] | No |
| NOT | ClientEditWhereInput | ClientEditWhereInput[] | No |
| clientId | StringNullableFilter | String | Null | Yes |
| action | EnumClientEditActionFilter | ClientEditAction | No |
| field | StringFilter | String | No |
| newValue | StringFilter | String | No |
| oldValue | StringFilter | String | No |
| approved | BoolNullableFilter | Boolean | Null | Yes |
| approvedTime | DateTimeNullableFilter | DateTime | Null | Yes |
| approvedById | StringNullableFilter | String | Null | Yes |
| brandTemplateId | StringFilter | String | No |
| approvedBy | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| brandTemplate | BrandTemplateRelationFilter | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| clientId | SortOrder | SortOrderInput | No |
| action | SortOrder | No |
| field | SortOrder | No |
| newValue | SortOrder | No |
| oldValue | SortOrder | No |
| approved | SortOrder | SortOrderInput | No |
| approvedTime | SortOrder | SortOrderInput | No |
| approvedById | SortOrder | SortOrderInput | No |
| brandTemplateId | SortOrder | No |
| _count | ClientEditCountOrderByAggregateInput | No |
| _max | ClientEditMaxOrderByAggregateInput | No |
| _min | ClientEditMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ClientEditScalarWhereWithAggregatesInput | ClientEditScalarWhereWithAggregatesInput[] | No |
| OR | ClientEditScalarWhereWithAggregatesInput[] | No |
| NOT | ClientEditScalarWhereWithAggregatesInput | ClientEditScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| clientId | StringNullableWithAggregatesFilter | String | Null | Yes |
| action | EnumClientEditActionWithAggregatesFilter | ClientEditAction | No |
| field | StringWithAggregatesFilter | String | No |
| newValue | StringWithAggregatesFilter | String | No |
| oldValue | StringWithAggregatesFilter | String | No |
| approved | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| approvedTime | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| approvedById | StringNullableWithAggregatesFilter | String | Null | Yes |
| brandTemplateId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ClientRatingWhereInput | ClientRatingWhereInput[] | No |
| OR | ClientRatingWhereInput[] | No |
| NOT | ClientRatingWhereInput | ClientRatingWhereInput[] | No |
| id | StringFilter | String | No |
| client_id | StringFilter | String | No |
| rating | IntFilter | Int | No |
| goodImplematation | BoolNullableFilter | Boolean | Null | Yes |
| comment | StringNullableFilter | String | Null | Yes |
| brandTemplateId | StringFilter | String | No |
| brandTemplate | BrandTemplateRelationFilter | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| client_id | SortOrder | No |
| rating | SortOrder | No |
| goodImplematation | SortOrder | SortOrderInput | No |
| comment | SortOrder | SortOrderInput | No |
| brandTemplateId | SortOrder | No |
| brandTemplate | BrandTemplateOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | ClientRatingWhereInput | ClientRatingWhereInput[] | No |
| OR | ClientRatingWhereInput[] | No |
| NOT | ClientRatingWhereInput | ClientRatingWhereInput[] | No |
| client_id | StringFilter | String | No |
| rating | IntFilter | Int | No |
| goodImplematation | BoolNullableFilter | Boolean | Null | Yes |
| comment | StringNullableFilter | String | Null | Yes |
| brandTemplateId | StringFilter | String | No |
| brandTemplate | BrandTemplateRelationFilter | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| client_id | SortOrder | No |
| rating | SortOrder | No |
| goodImplematation | SortOrder | SortOrderInput | No |
| comment | SortOrder | SortOrderInput | No |
| brandTemplateId | SortOrder | No |
| _count | ClientRatingCountOrderByAggregateInput | No |
| _avg | ClientRatingAvgOrderByAggregateInput | No |
| _max | ClientRatingMaxOrderByAggregateInput | No |
| _min | ClientRatingMinOrderByAggregateInput | No |
| _sum | ClientRatingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ClientRatingScalarWhereWithAggregatesInput | ClientRatingScalarWhereWithAggregatesInput[] | No |
| OR | ClientRatingScalarWhereWithAggregatesInput[] | No |
| NOT | ClientRatingScalarWhereWithAggregatesInput | ClientRatingScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| client_id | StringWithAggregatesFilter | String | No |
| rating | IntWithAggregatesFilter | Int | No |
| goodImplematation | BoolNullableWithAggregatesFilter | Boolean | Null | Yes |
| comment | StringNullableWithAggregatesFilter | String | Null | Yes |
| brandTemplateId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TelWhereInput | TelWhereInput[] | No |
| OR | TelWhereInput[] | No |
| NOT | TelWhereInput | TelWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| number | StringFilter | String | No |
| brandTemplateId | StringFilter | String | No |
| brandTemplate | BrandTemplateRelationFilter | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| number | SortOrder | No |
| brandTemplateId | SortOrder | No |
| brandTemplate | BrandTemplateOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | TelWhereInput | TelWhereInput[] | No |
| OR | TelWhereInput[] | No |
| NOT | TelWhereInput | TelWhereInput[] | No |
| name | StringFilter | String | No |
| number | StringFilter | String | No |
| brandTemplateId | StringFilter | String | No |
| brandTemplate | BrandTemplateRelationFilter | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| number | SortOrder | No |
| brandTemplateId | SortOrder | No |
| _count | TelCountOrderByAggregateInput | No |
| _max | TelMaxOrderByAggregateInput | No |
| _min | TelMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TelScalarWhereWithAggregatesInput | TelScalarWhereWithAggregatesInput[] | No |
| OR | TelScalarWhereWithAggregatesInput[] | No |
| NOT | TelScalarWhereWithAggregatesInput | TelScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| number | StringWithAggregatesFilter | String | No |
| brandTemplateId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BrandTemplateWhereInput | BrandTemplateWhereInput[] | No |
| OR | BrandTemplateWhereInput[] | No |
| NOT | BrandTemplateWhereInput | BrandTemplateWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| tags | StringNullableListFilter | No |
| imageId | StringNullableFilter | String | Null | Yes |
| threeDImage | StringNullableFilter | String | Null | Yes |
| video | StringNullableFilter | String | Null | Yes |
| sizes | StringNullableListFilter | No |
| units | StringNullableListFilter | No |
| categoryId | StringFilter | String | No |
| addon_categories | StringNullableListFilter | No |
| varieties | StringNullableListFilter | No |
| manufacturer | StringFilter | String | No |
| street_address | StringNullableFilter | String | Null | Yes |
| city | StringNullableFilter | String | Null | Yes |
| countryId | StringNullableFilter | String | Null | Yes |
| StringNullableFilter | String | Null | Yes | |
| website | StringNullableFilter | String | Null | Yes |
| draftNotes | StringNullableFilter | String | Null | Yes |
| draftType | StringNullableFilter | String | Null | Yes |
| draftCreatedAt | DateTimeFilter | DateTime | No |
| createdById | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| reviewedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| reviewNotes | StringNullableFilter | String | Null | Yes |
| reviewerId | StringNullableFilter | String | Null | Yes |
| inReview | BoolNullableFilter | Boolean | Null | Yes |
| isApproved | BoolNullableFilter | Boolean | Null | Yes |
| lastModified | DateTimeFilter | DateTime | No |
| creatorClientId | StringNullableFilter | String | Null | Yes |
| creatorClientProductId | StringNullableFilter | String | Null | Yes |
| fromClientCleanedBy | StringNullableFilter | String | Null | Yes |
| hasZeroDepositOrder | BoolNullableFilter | Boolean | Null | Yes |
| hasTransparencyAll | BoolNullableFilter | Boolean | Null | Yes |
| isNotForUnder18 | BoolNullableFilter | Boolean | Null | Yes |
| isDirty | BoolNullableFilter | Boolean | Null | Yes |
| image | ImageNullableRelationFilter | ImageWhereInput | Null | Yes |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| country | CountryNullableRelationFilter | CountryWhereInput | Null | Yes |
| telNumbers | TelListRelationFilter | No |
| createdBy | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| reviewer | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| client_edits | ClientEditListRelationFilter | No |
| implementationRatings | ClientRatingListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| AND | BrandTemplateWhereInput | BrandTemplateWhereInput[] | No |
| OR | BrandTemplateWhereInput[] | No |
| NOT | BrandTemplateWhereInput | BrandTemplateWhereInput[] | No |
| description | StringNullableFilter | String | Null | Yes |
| tags | StringNullableListFilter | No |
| imageId | StringNullableFilter | String | Null | Yes |
| threeDImage | StringNullableFilter | String | Null | Yes |
| video | StringNullableFilter | String | Null | Yes |
| sizes | StringNullableListFilter | No |
| units | StringNullableListFilter | No |
| categoryId | StringFilter | String | No |
| addon_categories | StringNullableListFilter | No |
| varieties | StringNullableListFilter | No |
| manufacturer | StringFilter | String | No |
| street_address | StringNullableFilter | String | Null | Yes |
| city | StringNullableFilter | String | Null | Yes |
| countryId | StringNullableFilter | String | Null | Yes |
| StringNullableFilter | String | Null | Yes | |
| website | StringNullableFilter | String | Null | Yes |
| draftNotes | StringNullableFilter | String | Null | Yes |
| draftType | StringNullableFilter | String | Null | Yes |
| draftCreatedAt | DateTimeFilter | DateTime | No |
| createdById | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| reviewedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| reviewNotes | StringNullableFilter | String | Null | Yes |
| reviewerId | StringNullableFilter | String | Null | Yes |
| inReview | BoolNullableFilter | Boolean | Null | Yes |
| isApproved | BoolNullableFilter | Boolean | Null | Yes |
| lastModified | DateTimeFilter | DateTime | No |
| creatorClientId | StringNullableFilter | String | Null | Yes |
| creatorClientProductId | StringNullableFilter | String | Null | Yes |
| fromClientCleanedBy | StringNullableFilter | String | Null | Yes |
| hasZeroDepositOrder | BoolNullableFilter | Boolean | Null | Yes |
| hasTransparencyAll | BoolNullableFilter | Boolean | Null | Yes |
| isNotForUnder18 | BoolNullableFilter | Boolean | Null | Yes |
| isDirty | BoolNullableFilter | Boolean | Null | Yes |
| image | ImageNullableRelationFilter | ImageWhereInput | Null | Yes |
| category | CategoryRelationFilter | CategoryWhereInput | No |
| country | CountryNullableRelationFilter | CountryWhereInput | Null | Yes |
| telNumbers | TelListRelationFilter | No |
| createdBy | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| reviewer | UserNullableRelationFilter | UserWhereInput | Null | Yes |
| client_edits | ClientEditListRelationFilter | No |
| implementationRatings | ClientRatingListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| promotions | PromotionCreateNestedManyWithoutIndustriesInput | No |
| categories | CategoryCreateNestedManyWithoutIndustriesInput | No |
| features | FeatureCreateNestedManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutIndustriesInput | No |
| categories | CategoryUncheckedCreateNestedManyWithoutIndustriesInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| promotions | PromotionUpdateManyWithoutIndustriesNestedInput | No |
| categories | CategoryUpdateManyWithoutIndustriesNestedInput | No |
| features | FeatureUpdateManyWithoutIndustriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutIndustriesNestedInput | No |
| categories | CategoryUncheckedUpdateManyWithoutIndustriesNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutIndustriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| user | UserCreateNestedManyWithoutCountryInput | No |
| promotions | PromotionCreateNestedManyWithoutCountriesInput | No |
| brandTemplate | BrandTemplateCreateNestedManyWithoutCountryInput | No |
| features | FeatureCreateNestedManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| user | UserUncheckedCreateNestedManyWithoutCountryInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutCountriesInput | No |
| brandTemplate | BrandTemplateUncheckedCreateNestedManyWithoutCountryInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateManyWithoutCountryNestedInput | No |
| promotions | PromotionUpdateManyWithoutCountriesNestedInput | No |
| brandTemplate | BrandTemplateUpdateManyWithoutCountryNestedInput | No |
| features | FeatureUpdateManyWithoutCountriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user | UserUncheckedUpdateManyWithoutCountryNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutCountriesNestedInput | No |
| brandTemplate | BrandTemplateUncheckedUpdateManyWithoutCountryNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutCountriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| permissions | PermissionsCreateNestedManyWithoutRoleInput | No |
| user | UserCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| permissions | PermissionsUncheckedCreateNestedManyWithoutRoleInput | No |
| user | UserUncheckedCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| permissions | PermissionsUpdateManyWithoutRoleNestedInput | No |
| user | UserUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| permissions | PermissionsUncheckedUpdateManyWithoutRoleNestedInput | No |
| user | UserUncheckedUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| domain | String | No |
| accessLevel | PermissionTypes | No |
| Role | RoleCreateNestedManyWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| domain | String | No |
| accessLevel | PermissionTypes | No |
| Role | RoleUncheckedCreateNestedManyWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| accessLevel | PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput | No |
| Role | RoleUpdateManyWithoutPermissionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| accessLevel | PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput | No |
| Role | RoleUncheckedUpdateManyWithoutPermissionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| domain | String | No |
| accessLevel | PermissionTypes | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| accessLevel | PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| accessLevel | PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| user | UserCreateNestedOneWithoutTeamsInput | No |
| goals | GoalCreateNestedManyWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| userId | String | Null | Yes |
| goals | GoalUncheckedCreateNestedManyWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutTeamsNestedInput | No |
| goals | GoalUpdateManyWithoutTeamsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| userId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| goals | GoalUncheckedUpdateManyWithoutTeamsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| userId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| userId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| description | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| createdAt | DateTime | No |
| deadline | DateTime | Null | Yes |
| active | Boolean | Null | Yes |
| isComplete | Boolean | Null | Yes |
| teams | TeamCreateNestedManyWithoutGoalsInput | No |
| tasks | TaskCreateNestedManyWithoutGoalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| description | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| createdAt | DateTime | No |
| deadline | DateTime | Null | Yes |
| active | Boolean | Null | Yes |
| isComplete | Boolean | Null | Yes |
| teams | TeamUncheckedCreateNestedManyWithoutGoalsInput | No |
| tasks | TaskUncheckedCreateNestedManyWithoutGoalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| active | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isComplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| teams | TeamUpdateManyWithoutGoalsNestedInput | No |
| tasks | TaskUpdateManyWithoutGoalNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| active | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isComplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| teams | TeamUncheckedUpdateManyWithoutGoalsNestedInput | No |
| tasks | TaskUncheckedUpdateManyWithoutGoalNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| description | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| createdAt | DateTime | No |
| deadline | DateTime | Null | Yes |
| active | Boolean | Null | Yes |
| isComplete | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| active | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isComplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| active | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isComplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| Goal | GoalCreateNestedOneWithoutTasksInput | No |
| assignee | UserCreateNestedOneWithoutAssignedTasksInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| GoalId | String | Null | Yes |
| assigneeId | String | Null | Yes |
| createdById | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| Goal | GoalUpdateOneWithoutTasksNestedInput | No |
| assignee | UserUpdateOneWithoutAssignedTasksNestedInput | No |
| createdBy | UserUpdateOneWithoutCreatedTasksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| GoalId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| assigneeId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| GoalId | String | Null | Yes |
| assigneeId | String | Null | Yes |
| createdById | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| GoalId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| assigneeId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| industries | IndustryCreateNestedManyWithoutFeaturesInput | No |
| countries | CountryCreateNestedManyWithoutFeaturesInput | No |
| promotions | PromotionCreateNestedManyWithoutFeaturesInput | No |
| packages | PackageCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| industries | IndustryUncheckedCreateNestedManyWithoutFeaturesInput | No |
| countries | CountryUncheckedCreateNestedManyWithoutFeaturesInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutFeaturesInput | No |
| packages | PackageUncheckedCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| industries | IndustryUpdateManyWithoutFeaturesNestedInput | No |
| countries | CountryUpdateManyWithoutFeaturesNestedInput | No |
| promotions | PromotionUpdateManyWithoutFeaturesNestedInput | No |
| packages | PackageUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| industries | IndustryUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| countries | CountryUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| packages | PackageUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| prices | PackagePriceCreateNestedManyWithoutPackageInput | No |
| features | FeatureCreateNestedManyWithoutPackagesInput | No |
| promotions | PromotionCreateNestedManyWithoutPackagesInput | No |
| payment | PaymentCreateNestedManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| prices | PackagePriceUncheckedCreateNestedManyWithoutPackageInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutPackagesInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutPackagesInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| prices | PackagePriceUpdateManyWithoutPackageNestedInput | No |
| features | FeatureUpdateManyWithoutPackagesNestedInput | No |
| promotions | PromotionUpdateManyWithoutPackagesNestedInput | No |
| payment | PaymentUpdateManyWithoutPackageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| prices | PackagePriceUncheckedUpdateManyWithoutPackageNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutPackagesNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutPackagesNestedInput | No |
| payment | PaymentUncheckedUpdateManyWithoutPackageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | Null | Yes |
| Package | PackageCreateNestedOneWithoutPricesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | Null | Yes |
| packageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| duration | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| extentionTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| Package | PackageUpdateOneWithoutPricesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| duration | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| extentionTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| packageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | Null | Yes |
| packageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| duration | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| extentionTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| duration | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| extentionTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| packageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| features | FeatureCreateNestedManyWithoutPromotionsInput | No |
| industries | IndustryCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageCreateNestedManyWithoutPromotionsInput | No |
| createdBy | UserCreateNestedOneWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| features | FeatureUncheckedCreateNestedManyWithoutPromotionsInput | No |
| industries | IndustryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageUncheckedCreateNestedManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUpdateManyWithoutPromotionsNestedInput | No |
| industries | IndustryUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUpdateManyWithoutPromotionsNestedInput | No |
| createdBy | UserUpdateOneWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| industries | IndustryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | Null | Yes |
| paymentMethod | String | No |
| revoked | Boolean | Null | Yes |
| createAt | DateTime | No |
| package | PackageCreateNestedOneWithoutPaymentInput | No |
| cashier | UserCreateNestedOneWithoutPaymentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | Null | Yes |
| packageId | String | No |
| paymentMethod | String | No |
| cashierId | String | No |
| revoked | Boolean | Null | Yes |
| createAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| package | PackageUpdateOneRequiredWithoutPaymentNestedInput | No |
| cashier | UserUpdateOneRequiredWithoutPaymentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| packageId | String | StringFieldUpdateOperationsInput | No |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| cashierId | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | Null | Yes |
| packageId | String | No |
| paymentMethod | String | No |
| cashierId | String | No |
| revoked | Boolean | Null | Yes |
| createAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| packageId | String | StringFieldUpdateOperationsInput | No |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| cashierId | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| icon | String | Null | Yes |
| createdBy | String | Null | Yes |
| createdAt | DateTime | No |
| industries | IndustryCreateNestedManyWithoutCategoriesInput | No |
| brandTemplate | BrandTemplateCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| icon | String | Null | Yes |
| createdBy | String | Null | Yes |
| createdAt | DateTime | No |
| industries | IndustryUncheckedCreateNestedManyWithoutCategoriesInput | No |
| brandTemplate | BrandTemplateUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdBy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| industries | IndustryUpdateManyWithoutCategoriesNestedInput | No |
| brandTemplate | BrandTemplateUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdBy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| industries | IndustryUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| brandTemplate | BrandTemplateUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| icon | String | Null | Yes |
| createdBy | String | Null | Yes |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdBy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdBy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| incomplete | Boolean | Null | Yes |
| incompleteMessage | String | Null | Yes |
| isTransparent | Boolean | Null | Yes |
| side | ImageSide | No |
| brandTemplate | BrandTemplateCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| incomplete | Boolean | Null | Yes |
| incompleteMessage | String | Null | Yes |
| isTransparent | Boolean | Null | Yes |
| side | ImageSide | No |
| brandTemplate | BrandTemplateUncheckedCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| incomplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| incompleteMessage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isTransparent | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| side | ImageSide | EnumImageSideFieldUpdateOperationsInput | No |
| brandTemplate | BrandTemplateUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| incomplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| incompleteMessage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isTransparent | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| side | ImageSide | EnumImageSideFieldUpdateOperationsInput | No |
| brandTemplate | BrandTemplateUncheckedUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| incomplete | Boolean | Null | Yes |
| incompleteMessage | String | Null | Yes |
| isTransparent | Boolean | Null | Yes |
| side | ImageSide | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| incomplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| incompleteMessage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isTransparent | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| side | ImageSide | EnumImageSideFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| incomplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| incompleteMessage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isTransparent | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| side | ImageSide | EnumImageSideFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | Null | Yes |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | Null | Yes |
| approvedTime | DateTime | Null | Yes |
| approvedBy | UserCreateNestedOneWithoutClientEditsInput | No |
| brandTemplate | BrandTemplateCreateNestedOneWithoutClient_editsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | Null | Yes |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | Null | Yes |
| approvedTime | DateTime | Null | Yes |
| approvedById | String | Null | Yes |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| approvedBy | UserUpdateOneWithoutClientEditsNestedInput | No |
| brandTemplate | BrandTemplateUpdateOneRequiredWithoutClient_editsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| approvedById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brandTemplateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | Null | Yes |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | Null | Yes |
| approvedTime | DateTime | Null | Yes |
| approvedById | String | Null | Yes |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| approvedById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brandTemplateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| client_id | String | No |
| rating | Int | No |
| goodImplematation | Boolean | Null | Yes |
| comment | String | Null | Yes |
| brandTemplate | BrandTemplateCreateNestedOneWithoutImplementationRatingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| client_id | String | No |
| rating | Int | No |
| goodImplematation | Boolean | Null | Yes |
| comment | String | Null | Yes |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| client_id | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| goodImplematation | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brandTemplate | BrandTemplateUpdateOneRequiredWithoutImplementationRatingsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| client_id | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| goodImplematation | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brandTemplateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| client_id | String | No |
| rating | Int | No |
| goodImplematation | Boolean | Null | Yes |
| comment | String | Null | Yes |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| client_id | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| goodImplematation | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| client_id | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| goodImplematation | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brandTemplateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| number | String | No |
| brandTemplate | BrandTemplateCreateNestedOneWithoutTelNumbersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| number | String | No |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| number | String | StringFieldUpdateOperationsInput | No |
| brandTemplate | BrandTemplateUpdateOneRequiredWithoutTelNumbersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| number | String | StringFieldUpdateOperationsInput | No |
| brandTemplateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| number | String | No |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| number | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| number | String | StringFieldUpdateOperationsInput | No |
| brandTemplateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| image | ImageCreateNestedOneWithoutBrandTemplateInput | No |
| category | CategoryCreateNestedOneWithoutBrandTemplateInput | No |
| country | CountryCreateNestedOneWithoutBrandTemplateInput | No |
| telNumbers | TelCreateNestedManyWithoutBrandTemplateInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTemplatesInput | No |
| reviewer | UserCreateNestedOneWithoutReviewedTemplatesInput | No |
| client_edits | ClientEditCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| telNumbers | TelUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| client_edits | ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | PromotionWhereInput | No |
| some | PromotionWhereInput | No |
| none | PromotionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CategoryWhereInput | No |
| some | CategoryWhereInput | No |
| none | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FeatureWhereInput | No |
| some | FeatureWhereInput | No |
| none | FeatureWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserWhereInput | No |
| some | UserWhereInput | No |
| none | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | BrandTemplateWhereInput | No |
| some | BrandTemplateWhereInput | No |
| none | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | EnumUserStatusFieldRefInput | Null | Yes |
| in | UserStatus[] | ListEnumUserStatusFieldRefInput | Null | Yes |
| notIn | UserStatus[] | ListEnumUserStatusFieldRefInput | Null | Yes |
| not | UserStatus | NestedEnumUserStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | RoleWhereInput | Null | Yes |
| isNot | RoleWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | CountryWhereInput | Null | Yes |
| isNot | CountryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | TeamWhereInput | No |
| some | TeamWhereInput | No |
| none | TeamWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TaskWhereInput | No |
| some | TaskWhereInput | No |
| none | TaskWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PaymentWhereInput | No |
| some | PaymentWhereInput | No |
| none | PaymentWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ClientEditWhereInput | No |
| some | ClientEditWhereInput | No |
| none | ClientEditWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| token | SortOrder | No |
| fcm_token | SortOrder | No |
| avatar | SortOrder | No |
| roleId | SortOrder | No |
| suspendendAt | SortOrder | No |
| status | SortOrder | No |
| streetAddress | SortOrder | No |
| city | SortOrder | No |
| cell | SortOrder | No |
| tell | SortOrder | No |
| verificationCode | SortOrder | No |
| countryId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| verificationCode | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| token | SortOrder | No |
| fcm_token | SortOrder | No |
| avatar | SortOrder | No |
| roleId | SortOrder | No |
| suspendendAt | SortOrder | No |
| status | SortOrder | No |
| streetAddress | SortOrder | No |
| city | SortOrder | No |
| cell | SortOrder | No |
| tell | SortOrder | No |
| verificationCode | SortOrder | No |
| countryId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| token | SortOrder | No |
| fcm_token | SortOrder | No |
| avatar | SortOrder | No |
| roleId | SortOrder | No |
| suspendendAt | SortOrder | No |
| status | SortOrder | No |
| streetAddress | SortOrder | No |
| city | SortOrder | No |
| cell | SortOrder | No |
| tell | SortOrder | No |
| verificationCode | SortOrder | No |
| countryId | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| verificationCode | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | EnumUserStatusFieldRefInput | Null | Yes |
| in | UserStatus[] | ListEnumUserStatusFieldRefInput | Null | Yes |
| notIn | UserStatus[] | ListEnumUserStatusFieldRefInput | Null | Yes |
| not | UserStatus | NestedEnumUserStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumUserStatusNullableFilter | No |
| _max | NestedEnumUserStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | PermissionsWhereInput | No |
| some | PermissionsWhereInput | No |
| none | PermissionsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PermissionTypes | EnumPermissionTypesFieldRefInput | No |
| in | PermissionTypes[] | ListEnumPermissionTypesFieldRefInput | No |
| notIn | PermissionTypes[] | ListEnumPermissionTypesFieldRefInput | No |
| not | PermissionTypes | NestedEnumPermissionTypesFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | RoleWhereInput | No |
| some | RoleWhereInput | No |
| none | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| domain | SortOrder | No |
| accessLevel | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| domain | SortOrder | No |
| accessLevel | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| domain | SortOrder | No |
| accessLevel | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PermissionTypes | EnumPermissionTypesFieldRefInput | No |
| in | PermissionTypes[] | ListEnumPermissionTypesFieldRefInput | No |
| notIn | PermissionTypes[] | ListEnumPermissionTypesFieldRefInput | No |
| not | PermissionTypes | NestedEnumPermissionTypesWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPermissionTypesFilter | No |
| _max | NestedEnumPermissionTypesFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | Null | Yes |
| isNot | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | GoalWhereInput | No |
| some | GoalWhereInput | No |
| none | GoalWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| leader | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| leader | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| createdAt | SortOrder | No |
| leader | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| startDate | SortOrder | No |
| createdAt | SortOrder | No |
| deadline | SortOrder | No |
| active | SortOrder | No |
| isComplete | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| startDate | SortOrder | No |
| createdAt | SortOrder | No |
| deadline | SortOrder | No |
| active | SortOrder | No |
| isComplete | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| startDate | SortOrder | No |
| createdAt | SortOrder | No |
| deadline | SortOrder | No |
| active | SortOrder | No |
| isComplete | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskPriority | EnumTaskPriorityFieldRefInput | Null | Yes |
| in | TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null | Yes |
| notIn | TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null | Yes |
| not | TaskPriority | NestedEnumTaskPriorityNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskStage | EnumTaskStageFieldRefInput | Null | Yes |
| in | TaskStage[] | ListEnumTaskStageFieldRefInput | Null | Yes |
| notIn | TaskStage[] | ListEnumTaskStageFieldRefInput | Null | Yes |
| not | TaskStage | NestedEnumTaskStageNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | GoalWhereInput | Null | Yes |
| isNot | GoalWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| comments | SortOrder | No |
| createdAt | SortOrder | No |
| startDate | SortOrder | No |
| dueDate | SortOrder | No |
| priority | SortOrder | No |
| stage | SortOrder | No |
| GoalId | SortOrder | No |
| assigneeId | SortOrder | No |
| createdById | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| comments | SortOrder | No |
| createdAt | SortOrder | No |
| startDate | SortOrder | No |
| dueDate | SortOrder | No |
| priority | SortOrder | No |
| stage | SortOrder | No |
| GoalId | SortOrder | No |
| assigneeId | SortOrder | No |
| createdById | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| title | SortOrder | No |
| comments | SortOrder | No |
| createdAt | SortOrder | No |
| startDate | SortOrder | No |
| dueDate | SortOrder | No |
| priority | SortOrder | No |
| stage | SortOrder | No |
| GoalId | SortOrder | No |
| assigneeId | SortOrder | No |
| createdById | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskPriority | EnumTaskPriorityFieldRefInput | Null | Yes |
| in | TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null | Yes |
| notIn | TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null | Yes |
| not | TaskPriority | NestedEnumTaskPriorityNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumTaskPriorityNullableFilter | No |
| _max | NestedEnumTaskPriorityNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskStage | EnumTaskStageFieldRefInput | Null | Yes |
| in | TaskStage[] | ListEnumTaskStageFieldRefInput | Null | Yes |
| notIn | TaskStage[] | ListEnumTaskStageFieldRefInput | Null | Yes |
| not | TaskStage | NestedEnumTaskStageNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumTaskStageNullableFilter | No |
| _max | NestedEnumTaskStageNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FeatureType | EnumFeatureTypeFieldRefInput | No |
| in | FeatureType[] | ListEnumFeatureTypeFieldRefInput | No |
| notIn | FeatureType[] | ListEnumFeatureTypeFieldRefInput | No |
| not | FeatureType | NestedEnumFeatureTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | IndustryWhereInput | No |
| some | IndustryWhereInput | No |
| none | IndustryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CountryWhereInput | No |
| some | CountryWhereInput | No |
| none | CountryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PackageWhereInput | No |
| some | PackageWhereInput | No |
| none | PackageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FeatureType | EnumFeatureTypeFieldRefInput | No |
| in | FeatureType[] | ListEnumFeatureTypeFieldRefInput | No |
| notIn | FeatureType[] | ListEnumFeatureTypeFieldRefInput | No |
| not | FeatureType | NestedEnumFeatureTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFeatureTypeFilter | No |
| _max | NestedEnumFeatureTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | PackagePriceWhereInput | No |
| some | PackagePriceWhereInput | No |
| none | PackagePriceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| color | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| color | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| color | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | PackageWhereInput | Null | Yes |
| isNot | PackageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| duration | SortOrder | No |
| amount | SortOrder | No |
| extentionTime | SortOrder | No |
| packageId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| duration | SortOrder | No |
| amount | SortOrder | No |
| extentionTime | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| duration | SortOrder | No |
| amount | SortOrder | No |
| extentionTime | SortOrder | No |
| packageId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| duration | SortOrder | No |
| amount | SortOrder | No |
| extentionTime | SortOrder | No |
| packageId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| duration | SortOrder | No |
| amount | SortOrder | No |
| extentionTime | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedFloatNullableFilter | No |
| _min | NestedFloatNullableFilter | No |
| _max | NestedFloatNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdById | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdById | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| createdById | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | No |
| in | Decimal[] | ListDecimalFieldRefInput | No |
| notIn | Decimal[] | ListDecimalFieldRefInput | No |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | PackageWhereInput | No |
| isNot | PackageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| amount | SortOrder | No |
| date | SortOrder | No |
| center | SortOrder | No |
| packageId | SortOrder | No |
| paymentMethod | SortOrder | No |
| cashierId | SortOrder | No |
| revoked | SortOrder | No |
| createAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| amount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| amount | SortOrder | No |
| date | SortOrder | No |
| center | SortOrder | No |
| packageId | SortOrder | No |
| paymentMethod | SortOrder | No |
| cashierId | SortOrder | No |
| revoked | SortOrder | No |
| createAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| amount | SortOrder | No |
| date | SortOrder | No |
| center | SortOrder | No |
| packageId | SortOrder | No |
| paymentMethod | SortOrder | No |
| cashierId | SortOrder | No |
| revoked | SortOrder | No |
| createAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| amount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | No |
| in | Decimal[] | ListDecimalFieldRefInput | No |
| notIn | Decimal[] | ListDecimalFieldRefInput | No |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedDecimalFilter | No |
| _sum | NestedDecimalFilter | No |
| _min | NestedDecimalFilter | No |
| _max | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| icon | SortOrder | No |
| createdBy | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| icon | SortOrder | No |
| createdBy | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| icon | SortOrder | No |
| createdBy | SortOrder | No |
| createdAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ImageSide | EnumImageSideFieldRefInput | No |
| in | ImageSide[] | ListEnumImageSideFieldRefInput | No |
| notIn | ImageSide[] | ListEnumImageSideFieldRefInput | No |
| not | ImageSide | NestedEnumImageSideFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| incomplete | SortOrder | No |
| incompleteMessage | SortOrder | No |
| isTransparent | SortOrder | No |
| side | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| incomplete | SortOrder | No |
| incompleteMessage | SortOrder | No |
| isTransparent | SortOrder | No |
| side | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| incomplete | SortOrder | No |
| incompleteMessage | SortOrder | No |
| isTransparent | SortOrder | No |
| side | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ImageSide | EnumImageSideFieldRefInput | No |
| in | ImageSide[] | ListEnumImageSideFieldRefInput | No |
| notIn | ImageSide[] | ListEnumImageSideFieldRefInput | No |
| not | ImageSide | NestedEnumImageSideWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumImageSideFilter | No |
| _max | NestedEnumImageSideFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ClientEditAction | EnumClientEditActionFieldRefInput | No |
| in | ClientEditAction[] | ListEnumClientEditActionFieldRefInput | No |
| notIn | ClientEditAction[] | ListEnumClientEditActionFieldRefInput | No |
| not | ClientEditAction | NestedEnumClientEditActionFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | BrandTemplateWhereInput | No |
| isNot | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| clientId | SortOrder | No |
| action | SortOrder | No |
| field | SortOrder | No |
| newValue | SortOrder | No |
| oldValue | SortOrder | No |
| approved | SortOrder | No |
| approvedTime | SortOrder | No |
| approvedById | SortOrder | No |
| brandTemplateId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| clientId | SortOrder | No |
| action | SortOrder | No |
| field | SortOrder | No |
| newValue | SortOrder | No |
| oldValue | SortOrder | No |
| approved | SortOrder | No |
| approvedTime | SortOrder | No |
| approvedById | SortOrder | No |
| brandTemplateId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| clientId | SortOrder | No |
| action | SortOrder | No |
| field | SortOrder | No |
| newValue | SortOrder | No |
| oldValue | SortOrder | No |
| approved | SortOrder | No |
| approvedTime | SortOrder | No |
| approvedById | SortOrder | No |
| brandTemplateId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ClientEditAction | EnumClientEditActionFieldRefInput | No |
| in | ClientEditAction[] | ListEnumClientEditActionFieldRefInput | No |
| notIn | ClientEditAction[] | ListEnumClientEditActionFieldRefInput | No |
| not | ClientEditAction | NestedEnumClientEditActionWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumClientEditActionFilter | No |
| _max | NestedEnumClientEditActionFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| client_id | SortOrder | No |
| rating | SortOrder | No |
| goodImplematation | SortOrder | No |
| comment | SortOrder | No |
| brandTemplateId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| rating | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| client_id | SortOrder | No |
| rating | SortOrder | No |
| goodImplematation | SortOrder | No |
| comment | SortOrder | No |
| brandTemplateId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| client_id | SortOrder | No |
| rating | SortOrder | No |
| goodImplematation | SortOrder | No |
| comment | SortOrder | No |
| brandTemplateId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| rating | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| number | SortOrder | No |
| brandTemplateId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| number | SortOrder | No |
| brandTemplateId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| number | SortOrder | No |
| brandTemplateId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | ListStringFieldRefInput | Null | Yes |
| has | String | StringFieldRefInput | Null | Yes |
| hasEvery | String | ListStringFieldRefInput | No |
| hasSome | String | ListStringFieldRefInput | No |
| isEmpty | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| is | ImageWhereInput | Null | Yes |
| isNot | ImageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | CategoryWhereInput | No |
| isNot | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TelWhereInput | No |
| some | TelWhereInput | No |
| none | TelWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ClientRatingWhereInput | No |
| some | ClientRatingWhereInput | No |
| none | ClientRatingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| tags | SortOrder | No |
| imageId | SortOrder | No |
| threeDImage | SortOrder | No |
| video | SortOrder | No |
| sizes | SortOrder | No |
| units | SortOrder | No |
| categoryId | SortOrder | No |
| addon_categories | SortOrder | No |
| varieties | SortOrder | No |
| manufacturer | SortOrder | No |
| street_address | SortOrder | No |
| city | SortOrder | No |
| countryId | SortOrder | No |
| SortOrder | No | |
| website | SortOrder | No |
| draftNotes | SortOrder | No |
| draftType | SortOrder | No |
| draftCreatedAt | SortOrder | No |
| createdById | SortOrder | No |
| createdAt | SortOrder | No |
| reviewedAt | SortOrder | No |
| reviewNotes | SortOrder | No |
| reviewerId | SortOrder | No |
| inReview | SortOrder | No |
| isApproved | SortOrder | No |
| lastModified | SortOrder | No |
| creatorClientId | SortOrder | No |
| creatorClientProductId | SortOrder | No |
| fromClientCleanedBy | SortOrder | No |
| hasZeroDepositOrder | SortOrder | No |
| hasTransparencyAll | SortOrder | No |
| isNotForUnder18 | SortOrder | No |
| isDirty | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| imageId | SortOrder | No |
| threeDImage | SortOrder | No |
| video | SortOrder | No |
| categoryId | SortOrder | No |
| manufacturer | SortOrder | No |
| street_address | SortOrder | No |
| city | SortOrder | No |
| countryId | SortOrder | No |
| SortOrder | No | |
| website | SortOrder | No |
| draftNotes | SortOrder | No |
| draftType | SortOrder | No |
| draftCreatedAt | SortOrder | No |
| createdById | SortOrder | No |
| createdAt | SortOrder | No |
| reviewedAt | SortOrder | No |
| reviewNotes | SortOrder | No |
| reviewerId | SortOrder | No |
| inReview | SortOrder | No |
| isApproved | SortOrder | No |
| lastModified | SortOrder | No |
| creatorClientId | SortOrder | No |
| creatorClientProductId | SortOrder | No |
| fromClientCleanedBy | SortOrder | No |
| hasZeroDepositOrder | SortOrder | No |
| hasTransparencyAll | SortOrder | No |
| isNotForUnder18 | SortOrder | No |
| isDirty | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| description | SortOrder | No |
| imageId | SortOrder | No |
| threeDImage | SortOrder | No |
| video | SortOrder | No |
| categoryId | SortOrder | No |
| manufacturer | SortOrder | No |
| street_address | SortOrder | No |
| city | SortOrder | No |
| countryId | SortOrder | No |
| SortOrder | No | |
| website | SortOrder | No |
| draftNotes | SortOrder | No |
| draftType | SortOrder | No |
| draftCreatedAt | SortOrder | No |
| createdById | SortOrder | No |
| createdAt | SortOrder | No |
| reviewedAt | SortOrder | No |
| reviewNotes | SortOrder | No |
| reviewerId | SortOrder | No |
| inReview | SortOrder | No |
| isApproved | SortOrder | No |
| lastModified | SortOrder | No |
| creatorClientId | SortOrder | No |
| creatorClientProductId | SortOrder | No |
| fromClientCleanedBy | SortOrder | No |
| hasZeroDepositOrder | SortOrder | No |
| hasTransparencyAll | SortOrder | No |
| isNotForUnder18 | SortOrder | No |
| isDirty | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| create | FeatureCreateWithoutIndustriesInput | FeatureCreateWithoutIndustriesInput[] | FeatureUncheckedCreateWithoutIndustriesInput | FeatureUncheckedCreateWithoutIndustriesInput[] | No |
| connectOrCreate | FeatureCreateOrConnectWithoutIndustriesInput | FeatureCreateOrConnectWithoutIndustriesInput[] | No |
| connect | FeatureWhereUniqueInput | FeatureWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FeatureCreateWithoutIndustriesInput | FeatureCreateWithoutIndustriesInput[] | FeatureUncheckedCreateWithoutIndustriesInput | FeatureUncheckedCreateWithoutIndustriesInput[] | No |
| connectOrCreate | FeatureCreateOrConnectWithoutIndustriesInput | FeatureCreateOrConnectWithoutIndustriesInput[] | No |
| connect | FeatureWhereUniqueInput | FeatureWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCountryInput | UserCreateWithoutCountryInput[] | UserUncheckedCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutCountryInput | UserCreateOrConnectWithoutCountryInput[] | No |
| createMany | UserCreateManyCountryInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FeatureCreateWithoutCountriesInput | FeatureCreateWithoutCountriesInput[] | FeatureUncheckedCreateWithoutCountriesInput | FeatureUncheckedCreateWithoutCountriesInput[] | No |
| connectOrCreate | FeatureCreateOrConnectWithoutCountriesInput | FeatureCreateOrConnectWithoutCountriesInput[] | No |
| connect | FeatureWhereUniqueInput | FeatureWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCountryInput | UserCreateWithoutCountryInput[] | UserUncheckedCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutCountryInput | UserCreateOrConnectWithoutCountryInput[] | No |
| createMany | UserCreateManyCountryInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FeatureCreateWithoutCountriesInput | FeatureCreateWithoutCountriesInput[] | FeatureUncheckedCreateWithoutCountriesInput | FeatureUncheckedCreateWithoutCountriesInput[] | No |
| connectOrCreate | FeatureCreateOrConnectWithoutCountriesInput | FeatureCreateOrConnectWithoutCountriesInput[] | No |
| connect | FeatureWhereUniqueInput | FeatureWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCountryInput | UserCreateWithoutCountryInput[] | UserUncheckedCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutCountryInput | UserCreateOrConnectWithoutCountryInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutCountryInput | UserUpsertWithWhereUniqueWithoutCountryInput[] | No |
| createMany | UserCreateManyCountryInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutCountryInput | UserUpdateWithWhereUniqueWithoutCountryInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutCountryInput | UserUpdateManyWithWhereWithoutCountryInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCountryInput | UserCreateWithoutCountryInput[] | UserUncheckedCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutCountryInput | UserCreateOrConnectWithoutCountryInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutCountryInput | UserUpsertWithWhereUniqueWithoutCountryInput[] | No |
| createMany | UserCreateManyCountryInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutCountryInput | UserUpdateWithWhereUniqueWithoutCountryInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutCountryInput | UserUpdateManyWithWhereWithoutCountryInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutUserInput | RoleUncheckedCreateWithoutUserInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutUserInput | No |
| connect | RoleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutUserInput | CountryUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CountryCreateOrConnectWithoutUserInput | No |
| connect | CountryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutUserInput | TeamCreateWithoutUserInput[] | TeamUncheckedCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutUserInput | TeamCreateOrConnectWithoutUserInput[] | No |
| createMany | TeamCreateManyUserInputEnvelope | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutAssigneeInput | TaskCreateWithoutAssigneeInput[] | TaskUncheckedCreateWithoutAssigneeInput | TaskUncheckedCreateWithoutAssigneeInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutAssigneeInput | TaskCreateOrConnectWithoutAssigneeInput[] | No |
| createMany | TaskCreateManyAssigneeInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutCreatedByInput | TaskCreateWithoutCreatedByInput[] | TaskUncheckedCreateWithoutCreatedByInput | TaskUncheckedCreateWithoutCreatedByInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutCreatedByInput | TaskCreateOrConnectWithoutCreatedByInput[] | No |
| createMany | TaskCreateManyCreatedByInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PromotionCreateWithoutCreatedByInput | PromotionCreateWithoutCreatedByInput[] | PromotionUncheckedCreateWithoutCreatedByInput | PromotionUncheckedCreateWithoutCreatedByInput[] | No |
| connectOrCreate | PromotionCreateOrConnectWithoutCreatedByInput | PromotionCreateOrConnectWithoutCreatedByInput[] | No |
| createMany | PromotionCreateManyCreatedByInputEnvelope | No |
| connect | PromotionWhereUniqueInput | PromotionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentCreateWithoutCashierInput | PaymentCreateWithoutCashierInput[] | PaymentUncheckedCreateWithoutCashierInput | PaymentUncheckedCreateWithoutCashierInput[] | No |
| connectOrCreate | PaymentCreateOrConnectWithoutCashierInput | PaymentCreateOrConnectWithoutCashierInput[] | No |
| createMany | PaymentCreateManyCashierInputEnvelope | No |
| connect | PaymentWhereUniqueInput | PaymentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutUserInput | TeamCreateWithoutUserInput[] | TeamUncheckedCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutUserInput | TeamCreateOrConnectWithoutUserInput[] | No |
| createMany | TeamCreateManyUserInputEnvelope | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutAssigneeInput | TaskCreateWithoutAssigneeInput[] | TaskUncheckedCreateWithoutAssigneeInput | TaskUncheckedCreateWithoutAssigneeInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutAssigneeInput | TaskCreateOrConnectWithoutAssigneeInput[] | No |
| createMany | TaskCreateManyAssigneeInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutCreatedByInput | TaskCreateWithoutCreatedByInput[] | TaskUncheckedCreateWithoutCreatedByInput | TaskUncheckedCreateWithoutCreatedByInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutCreatedByInput | TaskCreateOrConnectWithoutCreatedByInput[] | No |
| createMany | TaskCreateManyCreatedByInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PromotionCreateWithoutCreatedByInput | PromotionCreateWithoutCreatedByInput[] | PromotionUncheckedCreateWithoutCreatedByInput | PromotionUncheckedCreateWithoutCreatedByInput[] | No |
| connectOrCreate | PromotionCreateOrConnectWithoutCreatedByInput | PromotionCreateOrConnectWithoutCreatedByInput[] | No |
| createMany | PromotionCreateManyCreatedByInputEnvelope | No |
| connect | PromotionWhereUniqueInput | PromotionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentCreateWithoutCashierInput | PaymentCreateWithoutCashierInput[] | PaymentUncheckedCreateWithoutCashierInput | PaymentUncheckedCreateWithoutCashierInput[] | No |
| connectOrCreate | PaymentCreateOrConnectWithoutCashierInput | PaymentCreateOrConnectWithoutCashierInput[] | No |
| createMany | PaymentCreateManyCashierInputEnvelope | No |
| connect | PaymentWhereUniqueInput | PaymentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | UserStatus | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutUserInput | RoleUncheckedCreateWithoutUserInput | No |
| connectOrCreate | RoleCreateOrConnectWithoutUserInput | No |
| upsert | RoleUpsertWithoutUserInput | No |
| disconnect | Boolean | RoleWhereInput | No |
| delete | Boolean | RoleWhereInput | No |
| connect | RoleWhereUniqueInput | No |
| update | RoleUpdateToOneWithWhereWithoutUserInput | RoleUpdateWithoutUserInput | RoleUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutUserInput | CountryUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CountryCreateOrConnectWithoutUserInput | No |
| upsert | CountryUpsertWithoutUserInput | No |
| disconnect | Boolean | CountryWhereInput | No |
| delete | Boolean | CountryWhereInput | No |
| connect | CountryWhereUniqueInput | No |
| update | CountryUpdateToOneWithWhereWithoutUserInput | CountryUpdateWithoutUserInput | CountryUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutUserInput | TeamCreateWithoutUserInput[] | TeamUncheckedCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutUserInput | TeamCreateOrConnectWithoutUserInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutUserInput | TeamUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | TeamCreateManyUserInputEnvelope | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutUserInput | TeamUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutUserInput | TeamUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutAssigneeInput | TaskCreateWithoutAssigneeInput[] | TaskUncheckedCreateWithoutAssigneeInput | TaskUncheckedCreateWithoutAssigneeInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutAssigneeInput | TaskCreateOrConnectWithoutAssigneeInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutAssigneeInput | TaskUpsertWithWhereUniqueWithoutAssigneeInput[] | No |
| createMany | TaskCreateManyAssigneeInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutAssigneeInput | TaskUpdateWithWhereUniqueWithoutAssigneeInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutAssigneeInput | TaskUpdateManyWithWhereWithoutAssigneeInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutCreatedByInput | TaskCreateWithoutCreatedByInput[] | TaskUncheckedCreateWithoutCreatedByInput | TaskUncheckedCreateWithoutCreatedByInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutCreatedByInput | TaskCreateOrConnectWithoutCreatedByInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutCreatedByInput | TaskUpsertWithWhereUniqueWithoutCreatedByInput[] | No |
| createMany | TaskCreateManyCreatedByInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutCreatedByInput | TaskUpdateWithWhereUniqueWithoutCreatedByInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutCreatedByInput | TaskUpdateManyWithWhereWithoutCreatedByInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutUserInput | TeamCreateWithoutUserInput[] | TeamUncheckedCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutUserInput | TeamCreateOrConnectWithoutUserInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutUserInput | TeamUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | TeamCreateManyUserInputEnvelope | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutUserInput | TeamUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutUserInput | TeamUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutAssigneeInput | TaskCreateWithoutAssigneeInput[] | TaskUncheckedCreateWithoutAssigneeInput | TaskUncheckedCreateWithoutAssigneeInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutAssigneeInput | TaskCreateOrConnectWithoutAssigneeInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutAssigneeInput | TaskUpsertWithWhereUniqueWithoutAssigneeInput[] | No |
| createMany | TaskCreateManyAssigneeInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutAssigneeInput | TaskUpdateWithWhereUniqueWithoutAssigneeInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutAssigneeInput | TaskUpdateManyWithWhereWithoutAssigneeInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutCreatedByInput | TaskCreateWithoutCreatedByInput[] | TaskUncheckedCreateWithoutCreatedByInput | TaskUncheckedCreateWithoutCreatedByInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutCreatedByInput | TaskCreateOrConnectWithoutCreatedByInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutCreatedByInput | TaskUpsertWithWhereUniqueWithoutCreatedByInput[] | No |
| createMany | TaskCreateManyCreatedByInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutCreatedByInput | TaskUpdateWithWhereUniqueWithoutCreatedByInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutCreatedByInput | TaskUpdateManyWithWhereWithoutCreatedByInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PermissionsCreateWithoutRoleInput | PermissionsCreateWithoutRoleInput[] | PermissionsUncheckedCreateWithoutRoleInput | PermissionsUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | PermissionsCreateOrConnectWithoutRoleInput | PermissionsCreateOrConnectWithoutRoleInput[] | No |
| connect | PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRoleInput | UserCreateWithoutRoleInput[] | UserUncheckedCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutRoleInput | UserCreateOrConnectWithoutRoleInput[] | No |
| createMany | UserCreateManyRoleInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PermissionsCreateWithoutRoleInput | PermissionsCreateWithoutRoleInput[] | PermissionsUncheckedCreateWithoutRoleInput | PermissionsUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | PermissionsCreateOrConnectWithoutRoleInput | PermissionsCreateOrConnectWithoutRoleInput[] | No |
| connect | PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRoleInput | UserCreateWithoutRoleInput[] | UserUncheckedCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutRoleInput | UserCreateOrConnectWithoutRoleInput[] | No |
| createMany | UserCreateManyRoleInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRoleInput | UserCreateWithoutRoleInput[] | UserUncheckedCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutRoleInput | UserCreateOrConnectWithoutRoleInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutRoleInput | UserUpsertWithWhereUniqueWithoutRoleInput[] | No |
| createMany | UserCreateManyRoleInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutRoleInput | UserUpdateWithWhereUniqueWithoutRoleInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutRoleInput | UserUpdateManyWithWhereWithoutRoleInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRoleInput | UserCreateWithoutRoleInput[] | UserUncheckedCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutRoleInput | UserCreateOrConnectWithoutRoleInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutRoleInput | UserUpsertWithWhereUniqueWithoutRoleInput[] | No |
| createMany | UserCreateManyRoleInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutRoleInput | UserUpdateWithWhereUniqueWithoutRoleInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutRoleInput | UserUpdateManyWithWhereWithoutRoleInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutPermissionsInput | RoleCreateWithoutPermissionsInput[] | RoleUncheckedCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput[] | No |
| connectOrCreate | RoleCreateOrConnectWithoutPermissionsInput | RoleCreateOrConnectWithoutPermissionsInput[] | No |
| connect | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RoleCreateWithoutPermissionsInput | RoleCreateWithoutPermissionsInput[] | RoleUncheckedCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput[] | No |
| connectOrCreate | RoleCreateOrConnectWithoutPermissionsInput | RoleCreateOrConnectWithoutPermissionsInput[] | No |
| connect | RoleWhereUniqueInput | RoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | PermissionTypes | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTeamsInput | UserUncheckedCreateWithoutTeamsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTeamsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GoalCreateWithoutTeamsInput | GoalCreateWithoutTeamsInput[] | GoalUncheckedCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput[] | No |
| connectOrCreate | GoalCreateOrConnectWithoutTeamsInput | GoalCreateOrConnectWithoutTeamsInput[] | No |
| connect | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GoalCreateWithoutTeamsInput | GoalCreateWithoutTeamsInput[] | GoalUncheckedCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput[] | No |
| connectOrCreate | GoalCreateOrConnectWithoutTeamsInput | GoalCreateOrConnectWithoutTeamsInput[] | No |
| connect | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTeamsInput | UserUncheckedCreateWithoutTeamsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTeamsInput | No |
| upsert | UserUpsertWithoutTeamsInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutTeamsInput | UserUpdateWithoutTeamsInput | UserUncheckedUpdateWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GoalCreateWithoutTeamsInput | GoalCreateWithoutTeamsInput[] | GoalUncheckedCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput[] | No |
| connectOrCreate | GoalCreateOrConnectWithoutTeamsInput | GoalCreateOrConnectWithoutTeamsInput[] | No |
| upsert | GoalUpsertWithWhereUniqueWithoutTeamsInput | GoalUpsertWithWhereUniqueWithoutTeamsInput[] | No |
| set | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| disconnect | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| delete | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| connect | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| update | GoalUpdateWithWhereUniqueWithoutTeamsInput | GoalUpdateWithWhereUniqueWithoutTeamsInput[] | No |
| updateMany | GoalUpdateManyWithWhereWithoutTeamsInput | GoalUpdateManyWithWhereWithoutTeamsInput[] | No |
| deleteMany | GoalScalarWhereInput | GoalScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GoalCreateWithoutTeamsInput | GoalCreateWithoutTeamsInput[] | GoalUncheckedCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput[] | No |
| connectOrCreate | GoalCreateOrConnectWithoutTeamsInput | GoalCreateOrConnectWithoutTeamsInput[] | No |
| upsert | GoalUpsertWithWhereUniqueWithoutTeamsInput | GoalUpsertWithWhereUniqueWithoutTeamsInput[] | No |
| set | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| disconnect | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| delete | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| connect | GoalWhereUniqueInput | GoalWhereUniqueInput[] | No |
| update | GoalUpdateWithWhereUniqueWithoutTeamsInput | GoalUpdateWithWhereUniqueWithoutTeamsInput[] | No |
| updateMany | GoalUpdateManyWithWhereWithoutTeamsInput | GoalUpdateManyWithWhereWithoutTeamsInput[] | No |
| deleteMany | GoalScalarWhereInput | GoalScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutGoalsInput | TeamCreateWithoutGoalsInput[] | TeamUncheckedCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutGoalsInput | TeamCreateOrConnectWithoutGoalsInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutGoalInput | TaskCreateWithoutGoalInput[] | TaskUncheckedCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutGoalInput | TaskCreateOrConnectWithoutGoalInput[] | No |
| createMany | TaskCreateManyGoalInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutGoalsInput | TeamCreateWithoutGoalsInput[] | TeamUncheckedCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutGoalsInput | TeamCreateOrConnectWithoutGoalsInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutGoalInput | TaskCreateWithoutGoalInput[] | TaskUncheckedCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutGoalInput | TaskCreateOrConnectWithoutGoalInput[] | No |
| createMany | TaskCreateManyGoalInputEnvelope | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutGoalsInput | TeamCreateWithoutGoalsInput[] | TeamUncheckedCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutGoalsInput | TeamCreateOrConnectWithoutGoalsInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutGoalsInput | TeamUpsertWithWhereUniqueWithoutGoalsInput[] | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutGoalsInput | TeamUpdateWithWhereUniqueWithoutGoalsInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutGoalsInput | TeamUpdateManyWithWhereWithoutGoalsInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutGoalInput | TaskCreateWithoutGoalInput[] | TaskUncheckedCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutGoalInput | TaskCreateOrConnectWithoutGoalInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutGoalInput | TaskUpsertWithWhereUniqueWithoutGoalInput[] | No |
| createMany | TaskCreateManyGoalInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutGoalInput | TaskUpdateWithWhereUniqueWithoutGoalInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutGoalInput | TaskUpdateManyWithWhereWithoutGoalInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutGoalsInput | TeamCreateWithoutGoalsInput[] | TeamUncheckedCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutGoalsInput | TeamCreateOrConnectWithoutGoalsInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutGoalsInput | TeamUpsertWithWhereUniqueWithoutGoalsInput[] | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutGoalsInput | TeamUpdateWithWhereUniqueWithoutGoalsInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutGoalsInput | TeamUpdateManyWithWhereWithoutGoalsInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TaskCreateWithoutGoalInput | TaskCreateWithoutGoalInput[] | TaskUncheckedCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput[] | No |
| connectOrCreate | TaskCreateOrConnectWithoutGoalInput | TaskCreateOrConnectWithoutGoalInput[] | No |
| upsert | TaskUpsertWithWhereUniqueWithoutGoalInput | TaskUpsertWithWhereUniqueWithoutGoalInput[] | No |
| createMany | TaskCreateManyGoalInputEnvelope | No |
| set | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| disconnect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| delete | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| connect | TaskWhereUniqueInput | TaskWhereUniqueInput[] | No |
| update | TaskUpdateWithWhereUniqueWithoutGoalInput | TaskUpdateWithWhereUniqueWithoutGoalInput[] | No |
| updateMany | TaskUpdateManyWithWhereWithoutGoalInput | TaskUpdateManyWithWhereWithoutGoalInput[] | No |
| deleteMany | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GoalCreateWithoutTasksInput | GoalUncheckedCreateWithoutTasksInput | No |
| connectOrCreate | GoalCreateOrConnectWithoutTasksInput | No |
| connect | GoalWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAssignedTasksInput | UserUncheckedCreateWithoutAssignedTasksInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAssignedTasksInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCreatedTasksInput | UserUncheckedCreateWithoutCreatedTasksInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCreatedTasksInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | TaskPriority | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | TaskStage | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | GoalCreateWithoutTasksInput | GoalUncheckedCreateWithoutTasksInput | No |
| connectOrCreate | GoalCreateOrConnectWithoutTasksInput | No |
| upsert | GoalUpsertWithoutTasksInput | No |
| disconnect | Boolean | GoalWhereInput | No |
| delete | Boolean | GoalWhereInput | No |
| connect | GoalWhereUniqueInput | No |
| update | GoalUpdateToOneWithWhereWithoutTasksInput | GoalUpdateWithoutTasksInput | GoalUncheckedUpdateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAssignedTasksInput | UserUncheckedCreateWithoutAssignedTasksInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAssignedTasksInput | No |
| upsert | UserUpsertWithoutAssignedTasksInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutAssignedTasksInput | UserUpdateWithoutAssignedTasksInput | UserUncheckedUpdateWithoutAssignedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCreatedTasksInput | UserUncheckedCreateWithoutCreatedTasksInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCreatedTasksInput | No |
| upsert | UserUpsertWithoutCreatedTasksInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutCreatedTasksInput | UserUpdateWithoutCreatedTasksInput | UserUncheckedUpdateWithoutCreatedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | IndustryCreateWithoutFeaturesInput | IndustryCreateWithoutFeaturesInput[] | IndustryUncheckedCreateWithoutFeaturesInput | IndustryUncheckedCreateWithoutFeaturesInput[] | No |
| connectOrCreate | IndustryCreateOrConnectWithoutFeaturesInput | IndustryCreateOrConnectWithoutFeaturesInput[] | No |
| connect | IndustryWhereUniqueInput | IndustryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutFeaturesInput | CountryCreateWithoutFeaturesInput[] | CountryUncheckedCreateWithoutFeaturesInput | CountryUncheckedCreateWithoutFeaturesInput[] | No |
| connectOrCreate | CountryCreateOrConnectWithoutFeaturesInput | CountryCreateOrConnectWithoutFeaturesInput[] | No |
| connect | CountryWhereUniqueInput | CountryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PromotionCreateWithoutFeaturesInput | PromotionCreateWithoutFeaturesInput[] | PromotionUncheckedCreateWithoutFeaturesInput | PromotionUncheckedCreateWithoutFeaturesInput[] | No |
| connectOrCreate | PromotionCreateOrConnectWithoutFeaturesInput | PromotionCreateOrConnectWithoutFeaturesInput[] | No |
| connect | PromotionWhereUniqueInput | PromotionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackageCreateWithoutFeaturesInput | PackageCreateWithoutFeaturesInput[] | PackageUncheckedCreateWithoutFeaturesInput | PackageUncheckedCreateWithoutFeaturesInput[] | No |
| connectOrCreate | PackageCreateOrConnectWithoutFeaturesInput | PackageCreateOrConnectWithoutFeaturesInput[] | No |
| connect | PackageWhereUniqueInput | PackageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | IndustryCreateWithoutFeaturesInput | IndustryCreateWithoutFeaturesInput[] | IndustryUncheckedCreateWithoutFeaturesInput | IndustryUncheckedCreateWithoutFeaturesInput[] | No |
| connectOrCreate | IndustryCreateOrConnectWithoutFeaturesInput | IndustryCreateOrConnectWithoutFeaturesInput[] | No |
| connect | IndustryWhereUniqueInput | IndustryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutFeaturesInput | CountryCreateWithoutFeaturesInput[] | CountryUncheckedCreateWithoutFeaturesInput | CountryUncheckedCreateWithoutFeaturesInput[] | No |
| connectOrCreate | CountryCreateOrConnectWithoutFeaturesInput | CountryCreateOrConnectWithoutFeaturesInput[] | No |
| connect | CountryWhereUniqueInput | CountryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PromotionCreateWithoutFeaturesInput | PromotionCreateWithoutFeaturesInput[] | PromotionUncheckedCreateWithoutFeaturesInput | PromotionUncheckedCreateWithoutFeaturesInput[] | No |
| connectOrCreate | PromotionCreateOrConnectWithoutFeaturesInput | PromotionCreateOrConnectWithoutFeaturesInput[] | No |
| connect | PromotionWhereUniqueInput | PromotionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackageCreateWithoutFeaturesInput | PackageCreateWithoutFeaturesInput[] | PackageUncheckedCreateWithoutFeaturesInput | PackageUncheckedCreateWithoutFeaturesInput[] | No |
| connectOrCreate | PackageCreateOrConnectWithoutFeaturesInput | PackageCreateOrConnectWithoutFeaturesInput[] | No |
| connect | PackageWhereUniqueInput | PackageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | FeatureType | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackagePriceCreateWithoutPackageInput | PackagePriceCreateWithoutPackageInput[] | PackagePriceUncheckedCreateWithoutPackageInput | PackagePriceUncheckedCreateWithoutPackageInput[] | No |
| connectOrCreate | PackagePriceCreateOrConnectWithoutPackageInput | PackagePriceCreateOrConnectWithoutPackageInput[] | No |
| createMany | PackagePriceCreateManyPackageInputEnvelope | No |
| connect | PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FeatureCreateWithoutPackagesInput | FeatureCreateWithoutPackagesInput[] | FeatureUncheckedCreateWithoutPackagesInput | FeatureUncheckedCreateWithoutPackagesInput[] | No |
| connectOrCreate | FeatureCreateOrConnectWithoutPackagesInput | FeatureCreateOrConnectWithoutPackagesInput[] | No |
| connect | FeatureWhereUniqueInput | FeatureWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PromotionCreateWithoutPackagesInput | PromotionCreateWithoutPackagesInput[] | PromotionUncheckedCreateWithoutPackagesInput | PromotionUncheckedCreateWithoutPackagesInput[] | No |
| connectOrCreate | PromotionCreateOrConnectWithoutPackagesInput | PromotionCreateOrConnectWithoutPackagesInput[] | No |
| connect | PromotionWhereUniqueInput | PromotionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentCreateWithoutPackageInput | PaymentCreateWithoutPackageInput[] | PaymentUncheckedCreateWithoutPackageInput | PaymentUncheckedCreateWithoutPackageInput[] | No |
| connectOrCreate | PaymentCreateOrConnectWithoutPackageInput | PaymentCreateOrConnectWithoutPackageInput[] | No |
| createMany | PaymentCreateManyPackageInputEnvelope | No |
| connect | PaymentWhereUniqueInput | PaymentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackagePriceCreateWithoutPackageInput | PackagePriceCreateWithoutPackageInput[] | PackagePriceUncheckedCreateWithoutPackageInput | PackagePriceUncheckedCreateWithoutPackageInput[] | No |
| connectOrCreate | PackagePriceCreateOrConnectWithoutPackageInput | PackagePriceCreateOrConnectWithoutPackageInput[] | No |
| createMany | PackagePriceCreateManyPackageInputEnvelope | No |
| connect | PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FeatureCreateWithoutPackagesInput | FeatureCreateWithoutPackagesInput[] | FeatureUncheckedCreateWithoutPackagesInput | FeatureUncheckedCreateWithoutPackagesInput[] | No |
| connectOrCreate | FeatureCreateOrConnectWithoutPackagesInput | FeatureCreateOrConnectWithoutPackagesInput[] | No |
| connect | FeatureWhereUniqueInput | FeatureWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PromotionCreateWithoutPackagesInput | PromotionCreateWithoutPackagesInput[] | PromotionUncheckedCreateWithoutPackagesInput | PromotionUncheckedCreateWithoutPackagesInput[] | No |
| connectOrCreate | PromotionCreateOrConnectWithoutPackagesInput | PromotionCreateOrConnectWithoutPackagesInput[] | No |
| connect | PromotionWhereUniqueInput | PromotionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PaymentCreateWithoutPackageInput | PaymentCreateWithoutPackageInput[] | PaymentUncheckedCreateWithoutPackageInput | PaymentUncheckedCreateWithoutPackageInput[] | No |
| connectOrCreate | PaymentCreateOrConnectWithoutPackageInput | PaymentCreateOrConnectWithoutPackageInput[] | No |
| createMany | PaymentCreateManyPackageInputEnvelope | No |
| connect | PaymentWhereUniqueInput | PaymentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackageCreateWithoutPricesInput | PackageUncheckedCreateWithoutPricesInput | No |
| connectOrCreate | PackageCreateOrConnectWithoutPricesInput | No |
| connect | PackageWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | No |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | Null | Yes |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackageCreateWithoutPricesInput | PackageUncheckedCreateWithoutPricesInput | No |
| connectOrCreate | PackageCreateOrConnectWithoutPricesInput | No |
| upsert | PackageUpsertWithoutPricesInput | No |
| disconnect | Boolean | PackageWhereInput | No |
| delete | Boolean | PackageWhereInput | No |
| connect | PackageWhereUniqueInput | No |
| update | PackageUpdateToOneWithWhereWithoutPricesInput | PackageUpdateWithoutPricesInput | PackageUncheckedUpdateWithoutPricesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FeatureCreateWithoutPromotionsInput | FeatureCreateWithoutPromotionsInput[] | FeatureUncheckedCreateWithoutPromotionsInput | FeatureUncheckedCreateWithoutPromotionsInput[] | No |
| connectOrCreate | FeatureCreateOrConnectWithoutPromotionsInput | FeatureCreateOrConnectWithoutPromotionsInput[] | No |
| connect | FeatureWhereUniqueInput | FeatureWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutPromotionsInput | CountryCreateWithoutPromotionsInput[] | CountryUncheckedCreateWithoutPromotionsInput | CountryUncheckedCreateWithoutPromotionsInput[] | No |
| connectOrCreate | CountryCreateOrConnectWithoutPromotionsInput | CountryCreateOrConnectWithoutPromotionsInput[] | No |
| connect | CountryWhereUniqueInput | CountryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackageCreateWithoutPromotionsInput | PackageCreateWithoutPromotionsInput[] | PackageUncheckedCreateWithoutPromotionsInput | PackageUncheckedCreateWithoutPromotionsInput[] | No |
| connectOrCreate | PackageCreateOrConnectWithoutPromotionsInput | PackageCreateOrConnectWithoutPromotionsInput[] | No |
| connect | PackageWhereUniqueInput | PackageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPromotionInput | UserUncheckedCreateWithoutPromotionInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPromotionInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FeatureCreateWithoutPromotionsInput | FeatureCreateWithoutPromotionsInput[] | FeatureUncheckedCreateWithoutPromotionsInput | FeatureUncheckedCreateWithoutPromotionsInput[] | No |
| connectOrCreate | FeatureCreateOrConnectWithoutPromotionsInput | FeatureCreateOrConnectWithoutPromotionsInput[] | No |
| connect | FeatureWhereUniqueInput | FeatureWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutPromotionsInput | CountryCreateWithoutPromotionsInput[] | CountryUncheckedCreateWithoutPromotionsInput | CountryUncheckedCreateWithoutPromotionsInput[] | No |
| connectOrCreate | CountryCreateOrConnectWithoutPromotionsInput | CountryCreateOrConnectWithoutPromotionsInput[] | No |
| connect | CountryWhereUniqueInput | CountryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackageCreateWithoutPromotionsInput | PackageCreateWithoutPromotionsInput[] | PackageUncheckedCreateWithoutPromotionsInput | PackageUncheckedCreateWithoutPromotionsInput[] | No |
| connectOrCreate | PackageCreateOrConnectWithoutPromotionsInput | PackageCreateOrConnectWithoutPromotionsInput[] | No |
| connect | PackageWhereUniqueInput | PackageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPromotionInput | UserUncheckedCreateWithoutPromotionInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPromotionInput | No |
| upsert | UserUpsertWithoutPromotionInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutPromotionInput | UserUpdateWithoutPromotionInput | UserUncheckedUpdateWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackageCreateWithoutPaymentInput | PackageUncheckedCreateWithoutPaymentInput | No |
| connectOrCreate | PackageCreateOrConnectWithoutPaymentInput | No |
| connect | PackageWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPaymentInput | UserUncheckedCreateWithoutPaymentInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPaymentInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Decimal | No |
| increment | Decimal | No |
| decrement | Decimal | No |
| multiply | Decimal | No |
| divide | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| create | PackageCreateWithoutPaymentInput | PackageUncheckedCreateWithoutPaymentInput | No |
| connectOrCreate | PackageCreateOrConnectWithoutPaymentInput | No |
| upsert | PackageUpsertWithoutPaymentInput | No |
| connect | PackageWhereUniqueInput | No |
| update | PackageUpdateToOneWithWhereWithoutPaymentInput | PackageUpdateWithoutPaymentInput | PackageUncheckedUpdateWithoutPaymentInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPaymentInput | UserUncheckedCreateWithoutPaymentInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPaymentInput | No |
| upsert | UserUpsertWithoutPaymentInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutPaymentInput | UserUpdateWithoutPaymentInput | UserUncheckedUpdateWithoutPaymentInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BrandTemplateCreateWithoutImageInput | BrandTemplateCreateWithoutImageInput[] | BrandTemplateUncheckedCreateWithoutImageInput | BrandTemplateUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | BrandTemplateCreateOrConnectWithoutImageInput | BrandTemplateCreateOrConnectWithoutImageInput[] | No |
| createMany | BrandTemplateCreateManyImageInputEnvelope | No |
| connect | BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BrandTemplateCreateWithoutImageInput | BrandTemplateCreateWithoutImageInput[] | BrandTemplateUncheckedCreateWithoutImageInput | BrandTemplateUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | BrandTemplateCreateOrConnectWithoutImageInput | BrandTemplateCreateOrConnectWithoutImageInput[] | No |
| createMany | BrandTemplateCreateManyImageInputEnvelope | No |
| connect | BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | ImageSide | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutClientEditsInput | UserUncheckedCreateWithoutClientEditsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutClientEditsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BrandTemplateCreateWithoutClient_editsInput | BrandTemplateUncheckedCreateWithoutClient_editsInput | No |
| connectOrCreate | BrandTemplateCreateOrConnectWithoutClient_editsInput | No |
| connect | BrandTemplateWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | ClientEditAction | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutClientEditsInput | UserUncheckedCreateWithoutClientEditsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutClientEditsInput | No |
| upsert | UserUpsertWithoutClientEditsInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutClientEditsInput | UserUpdateWithoutClientEditsInput | UserUncheckedUpdateWithoutClientEditsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BrandTemplateCreateWithoutImplementationRatingsInput | BrandTemplateUncheckedCreateWithoutImplementationRatingsInput | No |
| connectOrCreate | BrandTemplateCreateOrConnectWithoutImplementationRatingsInput | No |
| connect | BrandTemplateWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BrandTemplateCreateWithoutTelNumbersInput | BrandTemplateUncheckedCreateWithoutTelNumbersInput | No |
| connectOrCreate | BrandTemplateCreateOrConnectWithoutTelNumbersInput | No |
| connect | BrandTemplateWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BrandTemplateCreateWithoutTelNumbersInput | BrandTemplateUncheckedCreateWithoutTelNumbersInput | No |
| connectOrCreate | BrandTemplateCreateOrConnectWithoutTelNumbersInput | No |
| upsert | BrandTemplateUpsertWithoutTelNumbersInput | No |
| connect | BrandTemplateWhereUniqueInput | No |
| update | BrandTemplateUpdateToOneWithWhereWithoutTelNumbersInput | BrandTemplateUpdateWithoutTelNumbersInput | BrandTemplateUncheckedUpdateWithoutTelNumbersInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutBrandTemplateInput | ImageUncheckedCreateWithoutBrandTemplateInput | No |
| connectOrCreate | ImageCreateOrConnectWithoutBrandTemplateInput | No |
| connect | ImageWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutBrandTemplateInput | CategoryUncheckedCreateWithoutBrandTemplateInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutBrandTemplateInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutBrandTemplateInput | CountryUncheckedCreateWithoutBrandTemplateInput | No |
| connectOrCreate | CountryCreateOrConnectWithoutBrandTemplateInput | No |
| connect | CountryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TelCreateWithoutBrandTemplateInput | TelCreateWithoutBrandTemplateInput[] | TelUncheckedCreateWithoutBrandTemplateInput | TelUncheckedCreateWithoutBrandTemplateInput[] | No |
| connectOrCreate | TelCreateOrConnectWithoutBrandTemplateInput | TelCreateOrConnectWithoutBrandTemplateInput[] | No |
| createMany | TelCreateManyBrandTemplateInputEnvelope | No |
| connect | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCreatedTemplatesInput | UserUncheckedCreateWithoutCreatedTemplatesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCreatedTemplatesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutReviewedTemplatesInput | UserUncheckedCreateWithoutReviewedTemplatesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutReviewedTemplatesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TelCreateWithoutBrandTemplateInput | TelCreateWithoutBrandTemplateInput[] | TelUncheckedCreateWithoutBrandTemplateInput | TelUncheckedCreateWithoutBrandTemplateInput[] | No |
| connectOrCreate | TelCreateOrConnectWithoutBrandTemplateInput | TelCreateOrConnectWithoutBrandTemplateInput[] | No |
| createMany | TelCreateManyBrandTemplateInputEnvelope | No |
| connect | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutBrandTemplateInput | ImageUncheckedCreateWithoutBrandTemplateInput | No |
| connectOrCreate | ImageCreateOrConnectWithoutBrandTemplateInput | No |
| upsert | ImageUpsertWithoutBrandTemplateInput | No |
| disconnect | Boolean | ImageWhereInput | No |
| delete | Boolean | ImageWhereInput | No |
| connect | ImageWhereUniqueInput | No |
| update | ImageUpdateToOneWithWhereWithoutBrandTemplateInput | ImageUpdateWithoutBrandTemplateInput | ImageUncheckedUpdateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutBrandTemplateInput | CategoryUncheckedCreateWithoutBrandTemplateInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutBrandTemplateInput | No |
| upsert | CategoryUpsertWithoutBrandTemplateInput | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateToOneWithWhereWithoutBrandTemplateInput | CategoryUpdateWithoutBrandTemplateInput | CategoryUncheckedUpdateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutBrandTemplateInput | CountryUncheckedCreateWithoutBrandTemplateInput | No |
| connectOrCreate | CountryCreateOrConnectWithoutBrandTemplateInput | No |
| upsert | CountryUpsertWithoutBrandTemplateInput | No |
| disconnect | Boolean | CountryWhereInput | No |
| delete | Boolean | CountryWhereInput | No |
| connect | CountryWhereUniqueInput | No |
| update | CountryUpdateToOneWithWhereWithoutBrandTemplateInput | CountryUpdateWithoutBrandTemplateInput | CountryUncheckedUpdateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TelCreateWithoutBrandTemplateInput | TelCreateWithoutBrandTemplateInput[] | TelUncheckedCreateWithoutBrandTemplateInput | TelUncheckedCreateWithoutBrandTemplateInput[] | No |
| connectOrCreate | TelCreateOrConnectWithoutBrandTemplateInput | TelCreateOrConnectWithoutBrandTemplateInput[] | No |
| upsert | TelUpsertWithWhereUniqueWithoutBrandTemplateInput | TelUpsertWithWhereUniqueWithoutBrandTemplateInput[] | No |
| createMany | TelCreateManyBrandTemplateInputEnvelope | No |
| set | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| disconnect | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| delete | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| connect | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| update | TelUpdateWithWhereUniqueWithoutBrandTemplateInput | TelUpdateWithWhereUniqueWithoutBrandTemplateInput[] | No |
| updateMany | TelUpdateManyWithWhereWithoutBrandTemplateInput | TelUpdateManyWithWhereWithoutBrandTemplateInput[] | No |
| deleteMany | TelScalarWhereInput | TelScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCreatedTemplatesInput | UserUncheckedCreateWithoutCreatedTemplatesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCreatedTemplatesInput | No |
| upsert | UserUpsertWithoutCreatedTemplatesInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutCreatedTemplatesInput | UserUpdateWithoutCreatedTemplatesInput | UserUncheckedUpdateWithoutCreatedTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutReviewedTemplatesInput | UserUncheckedCreateWithoutReviewedTemplatesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutReviewedTemplatesInput | No |
| upsert | UserUpsertWithoutReviewedTemplatesInput | No |
| disconnect | Boolean | UserWhereInput | No |
| delete | Boolean | UserWhereInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutReviewedTemplatesInput | UserUpdateWithoutReviewedTemplatesInput | UserUncheckedUpdateWithoutReviewedTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TelCreateWithoutBrandTemplateInput | TelCreateWithoutBrandTemplateInput[] | TelUncheckedCreateWithoutBrandTemplateInput | TelUncheckedCreateWithoutBrandTemplateInput[] | No |
| connectOrCreate | TelCreateOrConnectWithoutBrandTemplateInput | TelCreateOrConnectWithoutBrandTemplateInput[] | No |
| upsert | TelUpsertWithWhereUniqueWithoutBrandTemplateInput | TelUpsertWithWhereUniqueWithoutBrandTemplateInput[] | No |
| createMany | TelCreateManyBrandTemplateInputEnvelope | No |
| set | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| disconnect | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| delete | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| connect | TelWhereUniqueInput | TelWhereUniqueInput[] | No |
| update | TelUpdateWithWhereUniqueWithoutBrandTemplateInput | TelUpdateWithWhereUniqueWithoutBrandTemplateInput[] | No |
| updateMany | TelUpdateManyWithWhereWithoutBrandTemplateInput | TelUpdateManyWithWhereWithoutBrandTemplateInput[] | No |
| deleteMany | TelScalarWhereInput | TelScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | EnumUserStatusFieldRefInput | Null | Yes |
| in | UserStatus[] | ListEnumUserStatusFieldRefInput | Null | Yes |
| notIn | UserStatus[] | ListEnumUserStatusFieldRefInput | Null | Yes |
| not | UserStatus | NestedEnumUserStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | EnumUserStatusFieldRefInput | Null | Yes |
| in | UserStatus[] | ListEnumUserStatusFieldRefInput | Null | Yes |
| notIn | UserStatus[] | ListEnumUserStatusFieldRefInput | Null | Yes |
| not | UserStatus | NestedEnumUserStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumUserStatusNullableFilter | No |
| _max | NestedEnumUserStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PermissionTypes | EnumPermissionTypesFieldRefInput | No |
| in | PermissionTypes[] | ListEnumPermissionTypesFieldRefInput | No |
| notIn | PermissionTypes[] | ListEnumPermissionTypesFieldRefInput | No |
| not | PermissionTypes | NestedEnumPermissionTypesFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PermissionTypes | EnumPermissionTypesFieldRefInput | No |
| in | PermissionTypes[] | ListEnumPermissionTypesFieldRefInput | No |
| notIn | PermissionTypes[] | ListEnumPermissionTypesFieldRefInput | No |
| not | PermissionTypes | NestedEnumPermissionTypesWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPermissionTypesFilter | No |
| _max | NestedEnumPermissionTypesFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskPriority | EnumTaskPriorityFieldRefInput | Null | Yes |
| in | TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null | Yes |
| notIn | TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null | Yes |
| not | TaskPriority | NestedEnumTaskPriorityNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskStage | EnumTaskStageFieldRefInput | Null | Yes |
| in | TaskStage[] | ListEnumTaskStageFieldRefInput | Null | Yes |
| notIn | TaskStage[] | ListEnumTaskStageFieldRefInput | Null | Yes |
| not | TaskStage | NestedEnumTaskStageNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskPriority | EnumTaskPriorityFieldRefInput | Null | Yes |
| in | TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null | Yes |
| notIn | TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null | Yes |
| not | TaskPriority | NestedEnumTaskPriorityNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumTaskPriorityNullableFilter | No |
| _max | NestedEnumTaskPriorityNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TaskStage | EnumTaskStageFieldRefInput | Null | Yes |
| in | TaskStage[] | ListEnumTaskStageFieldRefInput | Null | Yes |
| notIn | TaskStage[] | ListEnumTaskStageFieldRefInput | Null | Yes |
| not | TaskStage | NestedEnumTaskStageNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumTaskStageNullableFilter | No |
| _max | NestedEnumTaskStageNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FeatureType | EnumFeatureTypeFieldRefInput | No |
| in | FeatureType[] | ListEnumFeatureTypeFieldRefInput | No |
| notIn | FeatureType[] | ListEnumFeatureTypeFieldRefInput | No |
| not | FeatureType | NestedEnumFeatureTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FeatureType | EnumFeatureTypeFieldRefInput | No |
| in | FeatureType[] | ListEnumFeatureTypeFieldRefInput | No |
| notIn | FeatureType[] | ListEnumFeatureTypeFieldRefInput | No |
| not | FeatureType | NestedEnumFeatureTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFeatureTypeFilter | No |
| _max | NestedEnumFeatureTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedFloatNullableFilter | No |
| _min | NestedFloatNullableFilter | No |
| _max | NestedFloatNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | No |
| in | Decimal[] | ListDecimalFieldRefInput | No |
| notIn | Decimal[] | ListDecimalFieldRefInput | No |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | DecimalFieldRefInput | No |
| in | Decimal[] | ListDecimalFieldRefInput | No |
| notIn | Decimal[] | ListDecimalFieldRefInput | No |
| lt | Decimal | DecimalFieldRefInput | No |
| lte | Decimal | DecimalFieldRefInput | No |
| gt | Decimal | DecimalFieldRefInput | No |
| gte | Decimal | DecimalFieldRefInput | No |
| not | Decimal | NestedDecimalWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedDecimalFilter | No |
| _sum | NestedDecimalFilter | No |
| _min | NestedDecimalFilter | No |
| _max | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ImageSide | EnumImageSideFieldRefInput | No |
| in | ImageSide[] | ListEnumImageSideFieldRefInput | No |
| notIn | ImageSide[] | ListEnumImageSideFieldRefInput | No |
| not | ImageSide | NestedEnumImageSideFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ImageSide | EnumImageSideFieldRefInput | No |
| in | ImageSide[] | ListEnumImageSideFieldRefInput | No |
| notIn | ImageSide[] | ListEnumImageSideFieldRefInput | No |
| not | ImageSide | NestedEnumImageSideWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumImageSideFilter | No |
| _max | NestedEnumImageSideFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ClientEditAction | EnumClientEditActionFieldRefInput | No |
| in | ClientEditAction[] | ListEnumClientEditActionFieldRefInput | No |
| notIn | ClientEditAction[] | ListEnumClientEditActionFieldRefInput | No |
| not | ClientEditAction | NestedEnumClientEditActionFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ClientEditAction | EnumClientEditActionFieldRefInput | No |
| in | ClientEditAction[] | ListEnumClientEditActionFieldRefInput | No |
| notIn | ClientEditAction[] | ListEnumClientEditActionFieldRefInput | No |
| not | ClientEditAction | NestedEnumClientEditActionWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumClientEditActionFilter | No |
| _max | NestedEnumClientEditActionFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| features | FeatureCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageCreateNestedManyWithoutPromotionsInput | No |
| createdBy | UserCreateNestedOneWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| features | FeatureUncheckedCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageUncheckedCreateNestedManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| create | PromotionCreateWithoutIndustriesInput | PromotionUncheckedCreateWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| icon | String | Null | Yes |
| createdBy | String | Null | Yes |
| createdAt | DateTime | No |
| brandTemplate | BrandTemplateCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| icon | String | Null | Yes |
| createdBy | String | Null | Yes |
| createdAt | DateTime | No |
| brandTemplate | BrandTemplateUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutIndustriesInput | CategoryUncheckedCreateWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| countries | CountryCreateNestedManyWithoutFeaturesInput | No |
| promotions | PromotionCreateNestedManyWithoutFeaturesInput | No |
| packages | PackageCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| countries | CountryUncheckedCreateNestedManyWithoutFeaturesInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutFeaturesInput | No |
| packages | PackageUncheckedCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| create | FeatureCreateWithoutIndustriesInput | FeatureUncheckedCreateWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| update | PromotionUpdateWithoutIndustriesInput | PromotionUncheckedUpdateWithoutIndustriesInput | No |
| create | PromotionCreateWithoutIndustriesInput | PromotionUncheckedCreateWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| data | PromotionUpdateWithoutIndustriesInput | PromotionUncheckedUpdateWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionScalarWhereInput | No |
| data | PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PromotionScalarWhereInput | PromotionScalarWhereInput[] | No |
| OR | PromotionScalarWhereInput[] | No |
| NOT | PromotionScalarWhereInput | PromotionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| startDate | DateTimeFilter | DateTime | No |
| endDate | DateTimeFilter | DateTime | No |
| createdById | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| update | CategoryUpdateWithoutIndustriesInput | CategoryUncheckedUpdateWithoutIndustriesInput | No |
| create | CategoryCreateWithoutIndustriesInput | CategoryUncheckedCreateWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| data | CategoryUpdateWithoutIndustriesInput | CategoryUncheckedUpdateWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryScalarWhereInput | No |
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| OR | CategoryScalarWhereInput[] | No |
| NOT | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| icon | StringNullableFilter | String | Null | Yes |
| createdBy | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| update | FeatureUpdateWithoutIndustriesInput | FeatureUncheckedUpdateWithoutIndustriesInput | No |
| create | FeatureCreateWithoutIndustriesInput | FeatureUncheckedCreateWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| data | FeatureUpdateWithoutIndustriesInput | FeatureUncheckedUpdateWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureScalarWhereInput | No |
| data | FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FeatureScalarWhereInput | FeatureScalarWhereInput[] | No |
| OR | FeatureScalarWhereInput[] | No |
| NOT | FeatureScalarWhereInput | FeatureScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| type | EnumFeatureTypeFilter | FeatureType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManyCountryInput | UserCreateManyCountryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| features | FeatureCreateNestedManyWithoutPromotionsInput | No |
| industries | IndustryCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageCreateNestedManyWithoutPromotionsInput | No |
| createdBy | UserCreateNestedOneWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| features | FeatureUncheckedCreateNestedManyWithoutPromotionsInput | No |
| industries | IndustryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageUncheckedCreateNestedManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| create | PromotionCreateWithoutCountriesInput | PromotionUncheckedCreateWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| image | ImageCreateNestedOneWithoutBrandTemplateInput | No |
| category | CategoryCreateNestedOneWithoutBrandTemplateInput | No |
| telNumbers | TelCreateNestedManyWithoutBrandTemplateInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTemplatesInput | No |
| reviewer | UserCreateNestedOneWithoutReviewedTemplatesInput | No |
| client_edits | ClientEditCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| telNumbers | TelUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| client_edits | ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| create | BrandTemplateCreateWithoutCountryInput | BrandTemplateUncheckedCreateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BrandTemplateCreateManyCountryInput | BrandTemplateCreateManyCountryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| industries | IndustryCreateNestedManyWithoutFeaturesInput | No |
| promotions | PromotionCreateNestedManyWithoutFeaturesInput | No |
| packages | PackageCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| industries | IndustryUncheckedCreateNestedManyWithoutFeaturesInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutFeaturesInput | No |
| packages | PackageUncheckedCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| create | FeatureCreateWithoutCountriesInput | FeatureUncheckedCreateWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutCountryInput | UserUncheckedUpdateWithoutCountryInput | No |
| create | UserCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutCountryInput | UserUncheckedUpdateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereInput | UserScalarWhereInput[] | No |
| OR | UserScalarWhereInput[] | No |
| NOT | UserScalarWhereInput | UserScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| StringFilter | String | No | |
| password | StringNullableFilter | String | Null | Yes |
| token | StringNullableFilter | String | Null | Yes |
| fcm_token | StringNullableFilter | String | Null | Yes |
| avatar | StringNullableFilter | String | Null | Yes |
| roleId | StringNullableFilter | String | Null | Yes |
| suspendendAt | DateTimeNullableFilter | DateTime | Null | Yes |
| status | EnumUserStatusNullableFilter | UserStatus | Null | Yes |
| streetAddress | StringNullableFilter | String | Null | Yes |
| city | StringNullableFilter | String | Null | Yes |
| cell | StringNullableFilter | String | Null | Yes |
| tell | StringNullableFilter | String | Null | Yes |
| verificationCode | IntNullableFilter | Int | Null | Yes |
| countryId | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| update | PromotionUpdateWithoutCountriesInput | PromotionUncheckedUpdateWithoutCountriesInput | No |
| create | PromotionCreateWithoutCountriesInput | PromotionUncheckedCreateWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| data | PromotionUpdateWithoutCountriesInput | PromotionUncheckedUpdateWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionScalarWhereInput | No |
| data | PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| update | BrandTemplateUpdateWithoutCountryInput | BrandTemplateUncheckedUpdateWithoutCountryInput | No |
| create | BrandTemplateCreateWithoutCountryInput | BrandTemplateUncheckedCreateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| data | BrandTemplateUpdateWithoutCountryInput | BrandTemplateUncheckedUpdateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateScalarWhereInput | No |
| data | BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] | No |
| OR | BrandTemplateScalarWhereInput[] | No |
| NOT | BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| tags | StringNullableListFilter | No |
| imageId | StringNullableFilter | String | Null | Yes |
| threeDImage | StringNullableFilter | String | Null | Yes |
| video | StringNullableFilter | String | Null | Yes |
| sizes | StringNullableListFilter | No |
| units | StringNullableListFilter | No |
| categoryId | StringFilter | String | No |
| addon_categories | StringNullableListFilter | No |
| varieties | StringNullableListFilter | No |
| manufacturer | StringFilter | String | No |
| street_address | StringNullableFilter | String | Null | Yes |
| city | StringNullableFilter | String | Null | Yes |
| countryId | StringNullableFilter | String | Null | Yes |
| StringNullableFilter | String | Null | Yes | |
| website | StringNullableFilter | String | Null | Yes |
| draftNotes | StringNullableFilter | String | Null | Yes |
| draftType | StringNullableFilter | String | Null | Yes |
| draftCreatedAt | DateTimeFilter | DateTime | No |
| createdById | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| reviewedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| reviewNotes | StringNullableFilter | String | Null | Yes |
| reviewerId | StringNullableFilter | String | Null | Yes |
| inReview | BoolNullableFilter | Boolean | Null | Yes |
| isApproved | BoolNullableFilter | Boolean | Null | Yes |
| lastModified | DateTimeFilter | DateTime | No |
| creatorClientId | StringNullableFilter | String | Null | Yes |
| creatorClientProductId | StringNullableFilter | String | Null | Yes |
| fromClientCleanedBy | StringNullableFilter | String | Null | Yes |
| hasZeroDepositOrder | BoolNullableFilter | Boolean | Null | Yes |
| hasTransparencyAll | BoolNullableFilter | Boolean | Null | Yes |
| isNotForUnder18 | BoolNullableFilter | Boolean | Null | Yes |
| isDirty | BoolNullableFilter | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| update | FeatureUpdateWithoutCountriesInput | FeatureUncheckedUpdateWithoutCountriesInput | No |
| create | FeatureCreateWithoutCountriesInput | FeatureUncheckedCreateWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| data | FeatureUpdateWithoutCountriesInput | FeatureUncheckedUpdateWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureScalarWhereInput | No |
| data | FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| permissions | PermissionsCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| permissions | PermissionsUncheckedCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| create | RoleCreateWithoutUserInput | RoleUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| promotions | PromotionCreateNestedManyWithoutCountriesInput | No |
| brandTemplate | BrandTemplateCreateNestedManyWithoutCountryInput | No |
| features | FeatureCreateNestedManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutCountriesInput | No |
| brandTemplate | BrandTemplateUncheckedCreateNestedManyWithoutCountryInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| create | CountryCreateWithoutUserInput | CountryUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| goals | GoalCreateNestedManyWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| goals | GoalUncheckedCreateNestedManyWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TeamCreateManyUserInput | TeamCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| Goal | GoalCreateNestedOneWithoutTasksInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| GoalId | String | Null | Yes |
| createdById | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutAssigneeInput | TaskUncheckedCreateWithoutAssigneeInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TaskCreateManyAssigneeInput | TaskCreateManyAssigneeInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| Goal | GoalCreateNestedOneWithoutTasksInput | No |
| assignee | UserCreateNestedOneWithoutAssignedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| GoalId | String | Null | Yes |
| assigneeId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutCreatedByInput | TaskUncheckedCreateWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TaskCreateManyCreatedByInput | TaskCreateManyCreatedByInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| features | FeatureCreateNestedManyWithoutPromotionsInput | No |
| industries | IndustryCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageCreateNestedManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| features | FeatureUncheckedCreateNestedManyWithoutPromotionsInput | No |
| industries | IndustryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageUncheckedCreateNestedManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| create | PromotionCreateWithoutCreatedByInput | PromotionUncheckedCreateWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PromotionCreateManyCreatedByInput | PromotionCreateManyCreatedByInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | Null | Yes |
| paymentMethod | String | No |
| revoked | Boolean | Null | Yes |
| createAt | DateTime | No |
| package | PackageCreateNestedOneWithoutPaymentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | Null | Yes |
| packageId | String | No |
| paymentMethod | String | No |
| revoked | Boolean | Null | Yes |
| createAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentWhereUniqueInput | No |
| create | PaymentCreateWithoutCashierInput | PaymentUncheckedCreateWithoutCashierInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PaymentCreateManyCashierInput | PaymentCreateManyCashierInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| image | ImageCreateNestedOneWithoutBrandTemplateInput | No |
| category | CategoryCreateNestedOneWithoutBrandTemplateInput | No |
| country | CountryCreateNestedOneWithoutBrandTemplateInput | No |
| telNumbers | TelCreateNestedManyWithoutBrandTemplateInput | No |
| reviewer | UserCreateNestedOneWithoutReviewedTemplatesInput | No |
| client_edits | ClientEditCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| telNumbers | TelUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| client_edits | ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| create | BrandTemplateCreateWithoutCreatedByInput | BrandTemplateUncheckedCreateWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BrandTemplateCreateManyCreatedByInput | BrandTemplateCreateManyCreatedByInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| image | ImageCreateNestedOneWithoutBrandTemplateInput | No |
| category | CategoryCreateNestedOneWithoutBrandTemplateInput | No |
| country | CountryCreateNestedOneWithoutBrandTemplateInput | No |
| telNumbers | TelCreateNestedManyWithoutBrandTemplateInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTemplatesInput | No |
| client_edits | ClientEditCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| telNumbers | TelUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| client_edits | ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| create | BrandTemplateCreateWithoutReviewerInput | BrandTemplateUncheckedCreateWithoutReviewerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BrandTemplateCreateManyReviewerInput | BrandTemplateCreateManyReviewerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | Null | Yes |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | Null | Yes |
| approvedTime | DateTime | Null | Yes |
| brandTemplate | BrandTemplateCreateNestedOneWithoutClient_editsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | Null | Yes |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | Null | Yes |
| approvedTime | DateTime | Null | Yes |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientEditWhereUniqueInput | No |
| create | ClientEditCreateWithoutApprovedByInput | ClientEditUncheckedCreateWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ClientEditCreateManyApprovedByInput | ClientEditCreateManyApprovedByInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | RoleUpdateWithoutUserInput | RoleUncheckedUpdateWithoutUserInput | No |
| create | RoleCreateWithoutUserInput | RoleUncheckedCreateWithoutUserInput | No |
| where | RoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereInput | No |
| data | RoleUpdateWithoutUserInput | RoleUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| permissions | PermissionsUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| permissions | PermissionsUncheckedUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CountryUpdateWithoutUserInput | CountryUncheckedUpdateWithoutUserInput | No |
| create | CountryCreateWithoutUserInput | CountryUncheckedCreateWithoutUserInput | No |
| where | CountryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereInput | No |
| data | CountryUpdateWithoutUserInput | CountryUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| promotions | PromotionUpdateManyWithoutCountriesNestedInput | No |
| brandTemplate | BrandTemplateUpdateManyWithoutCountryNestedInput | No |
| features | FeatureUpdateManyWithoutCountriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutCountriesNestedInput | No |
| brandTemplate | BrandTemplateUncheckedUpdateManyWithoutCountryNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutCountriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutUserInput | TeamUncheckedUpdateWithoutUserInput | No |
| create | TeamCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| data | TeamUpdateWithoutUserInput | TeamUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamScalarWhereInput | No |
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| OR | TeamScalarWhereInput[] | No |
| NOT | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| leader | StringFilter | String | No |
| userId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| update | TaskUpdateWithoutAssigneeInput | TaskUncheckedUpdateWithoutAssigneeInput | No |
| create | TaskCreateWithoutAssigneeInput | TaskUncheckedCreateWithoutAssigneeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| data | TaskUpdateWithoutAssigneeInput | TaskUncheckedUpdateWithoutAssigneeInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskScalarWhereInput | No |
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutAssigneeInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| OR | TaskScalarWhereInput[] | No |
| NOT | TaskScalarWhereInput | TaskScalarWhereInput[] | No |
| id | StringFilter | String | No |
| title | StringFilter | String | No |
| comments | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| startDate | DateTimeNullableFilter | DateTime | Null | Yes |
| dueDate | DateTimeNullableFilter | DateTime | Null | Yes |
| priority | EnumTaskPriorityNullableFilter | TaskPriority | Null | Yes |
| stage | EnumTaskStageNullableFilter | TaskStage | Null | Yes |
| GoalId | StringNullableFilter | String | Null | Yes |
| assigneeId | StringNullableFilter | String | Null | Yes |
| createdById | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| update | TaskUpdateWithoutCreatedByInput | TaskUncheckedUpdateWithoutCreatedByInput | No |
| create | TaskCreateWithoutCreatedByInput | TaskUncheckedCreateWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| data | TaskUpdateWithoutCreatedByInput | TaskUncheckedUpdateWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskScalarWhereInput | No |
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| update | PromotionUpdateWithoutCreatedByInput | PromotionUncheckedUpdateWithoutCreatedByInput | No |
| create | PromotionCreateWithoutCreatedByInput | PromotionUncheckedCreateWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| data | PromotionUpdateWithoutCreatedByInput | PromotionUncheckedUpdateWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionScalarWhereInput | No |
| data | PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentWhereUniqueInput | No |
| update | PaymentUpdateWithoutCashierInput | PaymentUncheckedUpdateWithoutCashierInput | No |
| create | PaymentCreateWithoutCashierInput | PaymentUncheckedCreateWithoutCashierInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentWhereUniqueInput | No |
| data | PaymentUpdateWithoutCashierInput | PaymentUncheckedUpdateWithoutCashierInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentScalarWhereInput | No |
| data | PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyWithoutCashierInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PaymentScalarWhereInput | PaymentScalarWhereInput[] | No |
| OR | PaymentScalarWhereInput[] | No |
| NOT | PaymentScalarWhereInput | PaymentScalarWhereInput[] | No |
| id | StringFilter | String | No |
| amount | DecimalFilter | Decimal | No |
| date | DateTimeFilter | DateTime | No |
| center | StringNullableFilter | String | Null | Yes |
| packageId | StringFilter | String | No |
| paymentMethod | StringFilter | String | No |
| cashierId | StringFilter | String | No |
| revoked | BoolNullableFilter | Boolean | Null | Yes |
| createAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| update | BrandTemplateUpdateWithoutCreatedByInput | BrandTemplateUncheckedUpdateWithoutCreatedByInput | No |
| create | BrandTemplateCreateWithoutCreatedByInput | BrandTemplateUncheckedCreateWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| data | BrandTemplateUpdateWithoutCreatedByInput | BrandTemplateUncheckedUpdateWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateScalarWhereInput | No |
| data | BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutCreatedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| update | BrandTemplateUpdateWithoutReviewerInput | BrandTemplateUncheckedUpdateWithoutReviewerInput | No |
| create | BrandTemplateCreateWithoutReviewerInput | BrandTemplateUncheckedCreateWithoutReviewerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| data | BrandTemplateUpdateWithoutReviewerInput | BrandTemplateUncheckedUpdateWithoutReviewerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateScalarWhereInput | No |
| data | BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutReviewerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientEditWhereUniqueInput | No |
| update | ClientEditUpdateWithoutApprovedByInput | ClientEditUncheckedUpdateWithoutApprovedByInput | No |
| create | ClientEditCreateWithoutApprovedByInput | ClientEditUncheckedCreateWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientEditWhereUniqueInput | No |
| data | ClientEditUpdateWithoutApprovedByInput | ClientEditUncheckedUpdateWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientEditScalarWhereInput | No |
| data | ClientEditUpdateManyMutationInput | ClientEditUncheckedUpdateManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ClientEditScalarWhereInput | ClientEditScalarWhereInput[] | No |
| OR | ClientEditScalarWhereInput[] | No |
| NOT | ClientEditScalarWhereInput | ClientEditScalarWhereInput[] | No |
| id | StringFilter | String | No |
| clientId | StringNullableFilter | String | Null | Yes |
| action | EnumClientEditActionFilter | ClientEditAction | No |
| field | StringFilter | String | No |
| newValue | StringFilter | String | No |
| oldValue | StringFilter | String | No |
| approved | BoolNullableFilter | Boolean | Null | Yes |
| approvedTime | DateTimeNullableFilter | DateTime | Null | Yes |
| approvedById | StringNullableFilter | String | Null | Yes |
| brandTemplateId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| domain | String | No |
| accessLevel | PermissionTypes | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| domain | String | No |
| accessLevel | PermissionTypes | No |
| Name | Type | Nullable |
|---|---|---|
| where | PermissionsWhereUniqueInput | No |
| create | PermissionsCreateWithoutRoleInput | PermissionsUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManyRoleInput | UserCreateManyRoleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PermissionsWhereUniqueInput | No |
| update | PermissionsUpdateWithoutRoleInput | PermissionsUncheckedUpdateWithoutRoleInput | No |
| create | PermissionsCreateWithoutRoleInput | PermissionsUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PermissionsWhereUniqueInput | No |
| data | PermissionsUpdateWithoutRoleInput | PermissionsUncheckedUpdateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PermissionsScalarWhereInput | No |
| data | PermissionsUpdateManyMutationInput | PermissionsUncheckedUpdateManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PermissionsScalarWhereInput | PermissionsScalarWhereInput[] | No |
| OR | PermissionsScalarWhereInput[] | No |
| NOT | PermissionsScalarWhereInput | PermissionsScalarWhereInput[] | No |
| id | StringFilter | String | No |
| domain | StringFilter | String | No |
| accessLevel | EnumPermissionTypesFilter | PermissionTypes | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutRoleInput | UserUncheckedUpdateWithoutRoleInput | No |
| create | UserCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutRoleInput | UserUncheckedUpdateWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| user | UserCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| user | UserUncheckedCreateNestedManyWithoutRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| create | RoleCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| update | RoleUpdateWithoutPermissionsInput | RoleUncheckedUpdateWithoutPermissionsInput | No |
| create | RoleCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleWhereUniqueInput | No |
| data | RoleUpdateWithoutPermissionsInput | RoleUncheckedUpdateWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RoleScalarWhereInput | No |
| data | RoleUpdateManyMutationInput | RoleUncheckedUpdateManyWithoutPermissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RoleScalarWhereInput | RoleScalarWhereInput[] | No |
| OR | RoleScalarWhereInput[] | No |
| NOT | RoleScalarWhereInput | RoleScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTeamsInput | UserUncheckedCreateWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| description | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| createdAt | DateTime | No |
| deadline | DateTime | Null | Yes |
| active | Boolean | Null | Yes |
| isComplete | Boolean | Null | Yes |
| tasks | TaskCreateNestedManyWithoutGoalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| description | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| createdAt | DateTime | No |
| deadline | DateTime | Null | Yes |
| active | Boolean | Null | Yes |
| isComplete | Boolean | Null | Yes |
| tasks | TaskUncheckedCreateNestedManyWithoutGoalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GoalWhereUniqueInput | No |
| create | GoalCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTeamsInput | UserUncheckedUpdateWithoutTeamsInput | No |
| create | UserCreateWithoutTeamsInput | UserUncheckedCreateWithoutTeamsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutTeamsInput | UserUncheckedUpdateWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GoalWhereUniqueInput | No |
| update | GoalUpdateWithoutTeamsInput | GoalUncheckedUpdateWithoutTeamsInput | No |
| create | GoalCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GoalWhereUniqueInput | No |
| data | GoalUpdateWithoutTeamsInput | GoalUncheckedUpdateWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GoalScalarWhereInput | No |
| data | GoalUpdateManyMutationInput | GoalUncheckedUpdateManyWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GoalScalarWhereInput | GoalScalarWhereInput[] | No |
| OR | GoalScalarWhereInput[] | No |
| NOT | GoalScalarWhereInput | GoalScalarWhereInput[] | No |
| id | StringFilter | String | No |
| title | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| startDate | DateTimeNullableFilter | DateTime | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| deadline | DateTimeNullableFilter | DateTime | Null | Yes |
| active | BoolNullableFilter | Boolean | Null | Yes |
| isComplete | BoolNullableFilter | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| user | UserCreateNestedOneWithoutTeamsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| userId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| assignee | UserCreateNestedOneWithoutAssignedTasksInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| assigneeId | String | Null | Yes |
| createdById | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| create | TaskCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TaskCreateManyGoalInput | TaskCreateManyGoalInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutGoalsInput | TeamUncheckedUpdateWithoutGoalsInput | No |
| create | TeamCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| data | TeamUpdateWithoutGoalsInput | TeamUncheckedUpdateWithoutGoalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamScalarWhereInput | No |
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutGoalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| update | TaskUpdateWithoutGoalInput | TaskUncheckedUpdateWithoutGoalInput | No |
| create | TaskCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskWhereUniqueInput | No |
| data | TaskUpdateWithoutGoalInput | TaskUncheckedUpdateWithoutGoalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TaskScalarWhereInput | No |
| data | TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutGoalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| description | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| createdAt | DateTime | No |
| deadline | DateTime | Null | Yes |
| active | Boolean | Null | Yes |
| isComplete | Boolean | Null | Yes |
| teams | TeamCreateNestedManyWithoutGoalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| description | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| createdAt | DateTime | No |
| deadline | DateTime | Null | Yes |
| active | Boolean | Null | Yes |
| isComplete | Boolean | Null | Yes |
| teams | TeamUncheckedCreateNestedManyWithoutGoalsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GoalWhereUniqueInput | No |
| create | GoalCreateWithoutTasksInput | GoalUncheckedCreateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAssignedTasksInput | UserUncheckedCreateWithoutAssignedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCreatedTasksInput | UserUncheckedCreateWithoutCreatedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | GoalUpdateWithoutTasksInput | GoalUncheckedUpdateWithoutTasksInput | No |
| create | GoalCreateWithoutTasksInput | GoalUncheckedCreateWithoutTasksInput | No |
| where | GoalWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GoalWhereInput | No |
| data | GoalUpdateWithoutTasksInput | GoalUncheckedUpdateWithoutTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| active | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isComplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| teams | TeamUpdateManyWithoutGoalsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| active | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isComplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| teams | TeamUncheckedUpdateManyWithoutGoalsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAssignedTasksInput | UserUncheckedUpdateWithoutAssignedTasksInput | No |
| create | UserCreateWithoutAssignedTasksInput | UserUncheckedCreateWithoutAssignedTasksInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutAssignedTasksInput | UserUncheckedUpdateWithoutAssignedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCreatedTasksInput | UserUncheckedUpdateWithoutCreatedTasksInput | No |
| create | UserCreateWithoutCreatedTasksInput | UserUncheckedCreateWithoutCreatedTasksInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutCreatedTasksInput | UserUncheckedUpdateWithoutCreatedTasksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| promotions | PromotionCreateNestedManyWithoutIndustriesInput | No |
| categories | CategoryCreateNestedManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutIndustriesInput | No |
| categories | CategoryUncheckedCreateNestedManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryWhereUniqueInput | No |
| create | IndustryCreateWithoutFeaturesInput | IndustryUncheckedCreateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| user | UserCreateNestedManyWithoutCountryInput | No |
| promotions | PromotionCreateNestedManyWithoutCountriesInput | No |
| brandTemplate | BrandTemplateCreateNestedManyWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| user | UserUncheckedCreateNestedManyWithoutCountryInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutCountriesInput | No |
| brandTemplate | BrandTemplateUncheckedCreateNestedManyWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| create | CountryCreateWithoutFeaturesInput | CountryUncheckedCreateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| industries | IndustryCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageCreateNestedManyWithoutPromotionsInput | No |
| createdBy | UserCreateNestedOneWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| industries | IndustryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| packages | PackageUncheckedCreateNestedManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| create | PromotionCreateWithoutFeaturesInput | PromotionUncheckedCreateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| prices | PackagePriceCreateNestedManyWithoutPackageInput | No |
| promotions | PromotionCreateNestedManyWithoutPackagesInput | No |
| payment | PaymentCreateNestedManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| prices | PackagePriceUncheckedCreateNestedManyWithoutPackageInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutPackagesInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereUniqueInput | No |
| create | PackageCreateWithoutFeaturesInput | PackageUncheckedCreateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryWhereUniqueInput | No |
| update | IndustryUpdateWithoutFeaturesInput | IndustryUncheckedUpdateWithoutFeaturesInput | No |
| create | IndustryCreateWithoutFeaturesInput | IndustryUncheckedCreateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryWhereUniqueInput | No |
| data | IndustryUpdateWithoutFeaturesInput | IndustryUncheckedUpdateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryScalarWhereInput | No |
| data | IndustryUpdateManyMutationInput | IndustryUncheckedUpdateManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | IndustryScalarWhereInput | IndustryScalarWhereInput[] | No |
| OR | IndustryScalarWhereInput[] | No |
| NOT | IndustryScalarWhereInput | IndustryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| update | CountryUpdateWithoutFeaturesInput | CountryUncheckedUpdateWithoutFeaturesInput | No |
| create | CountryCreateWithoutFeaturesInput | CountryUncheckedCreateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| data | CountryUpdateWithoutFeaturesInput | CountryUncheckedUpdateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryScalarWhereInput | No |
| data | CountryUpdateManyMutationInput | CountryUncheckedUpdateManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CountryScalarWhereInput | CountryScalarWhereInput[] | No |
| OR | CountryScalarWhereInput[] | No |
| NOT | CountryScalarWhereInput | CountryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| update | PromotionUpdateWithoutFeaturesInput | PromotionUncheckedUpdateWithoutFeaturesInput | No |
| create | PromotionCreateWithoutFeaturesInput | PromotionUncheckedCreateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| data | PromotionUpdateWithoutFeaturesInput | PromotionUncheckedUpdateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionScalarWhereInput | No |
| data | PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereUniqueInput | No |
| update | PackageUpdateWithoutFeaturesInput | PackageUncheckedUpdateWithoutFeaturesInput | No |
| create | PackageCreateWithoutFeaturesInput | PackageUncheckedCreateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereUniqueInput | No |
| data | PackageUpdateWithoutFeaturesInput | PackageUncheckedUpdateWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageScalarWhereInput | No |
| data | PackageUpdateManyMutationInput | PackageUncheckedUpdateManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PackageScalarWhereInput | PackageScalarWhereInput[] | No |
| OR | PackageScalarWhereInput[] | No |
| NOT | PackageScalarWhereInput | PackageScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| color | StringNullableFilter | String | Null | Yes |
| level | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PackagePriceWhereUniqueInput | No |
| create | PackagePriceCreateWithoutPackageInput | PackagePriceUncheckedCreateWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PackagePriceCreateManyPackageInput | PackagePriceCreateManyPackageInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| industries | IndustryCreateNestedManyWithoutFeaturesInput | No |
| countries | CountryCreateNestedManyWithoutFeaturesInput | No |
| promotions | PromotionCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| industries | IndustryUncheckedCreateNestedManyWithoutFeaturesInput | No |
| countries | CountryUncheckedCreateNestedManyWithoutFeaturesInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| create | FeatureCreateWithoutPackagesInput | FeatureUncheckedCreateWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| features | FeatureCreateNestedManyWithoutPromotionsInput | No |
| industries | IndustryCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryCreateNestedManyWithoutPromotionsInput | No |
| createdBy | UserCreateNestedOneWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| features | FeatureUncheckedCreateNestedManyWithoutPromotionsInput | No |
| industries | IndustryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| countries | CountryUncheckedCreateNestedManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| create | PromotionCreateWithoutPackagesInput | PromotionUncheckedCreateWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | Null | Yes |
| paymentMethod | String | No |
| revoked | Boolean | Null | Yes |
| createAt | DateTime | No |
| cashier | UserCreateNestedOneWithoutPaymentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | Null | Yes |
| paymentMethod | String | No |
| cashierId | String | No |
| revoked | Boolean | Null | Yes |
| createAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentWhereUniqueInput | No |
| create | PaymentCreateWithoutPackageInput | PaymentUncheckedCreateWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PaymentCreateManyPackageInput | PaymentCreateManyPackageInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackagePriceWhereUniqueInput | No |
| update | PackagePriceUpdateWithoutPackageInput | PackagePriceUncheckedUpdateWithoutPackageInput | No |
| create | PackagePriceCreateWithoutPackageInput | PackagePriceUncheckedCreateWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackagePriceWhereUniqueInput | No |
| data | PackagePriceUpdateWithoutPackageInput | PackagePriceUncheckedUpdateWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackagePriceScalarWhereInput | No |
| data | PackagePriceUpdateManyMutationInput | PackagePriceUncheckedUpdateManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PackagePriceScalarWhereInput | PackagePriceScalarWhereInput[] | No |
| OR | PackagePriceScalarWhereInput[] | No |
| NOT | PackagePriceScalarWhereInput | PackagePriceScalarWhereInput[] | No |
| id | StringFilter | String | No |
| duration | FloatFilter | Float | No |
| amount | FloatFilter | Float | No |
| extentionTime | FloatNullableFilter | Float | Null | Yes |
| packageId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| update | FeatureUpdateWithoutPackagesInput | FeatureUncheckedUpdateWithoutPackagesInput | No |
| create | FeatureCreateWithoutPackagesInput | FeatureUncheckedCreateWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| data | FeatureUpdateWithoutPackagesInput | FeatureUncheckedUpdateWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureScalarWhereInput | No |
| data | FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| update | PromotionUpdateWithoutPackagesInput | PromotionUncheckedUpdateWithoutPackagesInput | No |
| create | PromotionCreateWithoutPackagesInput | PromotionUncheckedCreateWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionWhereUniqueInput | No |
| data | PromotionUpdateWithoutPackagesInput | PromotionUncheckedUpdateWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PromotionScalarWhereInput | No |
| data | PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentWhereUniqueInput | No |
| update | PaymentUpdateWithoutPackageInput | PaymentUncheckedUpdateWithoutPackageInput | No |
| create | PaymentCreateWithoutPackageInput | PaymentUncheckedCreateWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentWhereUniqueInput | No |
| data | PaymentUpdateWithoutPackageInput | PaymentUncheckedUpdateWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PaymentScalarWhereInput | No |
| data | PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| features | FeatureCreateNestedManyWithoutPackagesInput | No |
| promotions | PromotionCreateNestedManyWithoutPackagesInput | No |
| payment | PaymentCreateNestedManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| features | FeatureUncheckedCreateNestedManyWithoutPackagesInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutPackagesInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereUniqueInput | No |
| create | PackageCreateWithoutPricesInput | PackageUncheckedCreateWithoutPricesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PackageUpdateWithoutPricesInput | PackageUncheckedUpdateWithoutPricesInput | No |
| create | PackageCreateWithoutPricesInput | PackageUncheckedCreateWithoutPricesInput | No |
| where | PackageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereInput | No |
| data | PackageUpdateWithoutPricesInput | PackageUncheckedUpdateWithoutPricesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| features | FeatureUpdateManyWithoutPackagesNestedInput | No |
| promotions | PromotionUpdateManyWithoutPackagesNestedInput | No |
| payment | PaymentUpdateManyWithoutPackageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| features | FeatureUncheckedUpdateManyWithoutPackagesNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutPackagesNestedInput | No |
| payment | PaymentUncheckedUpdateManyWithoutPackageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| industries | IndustryCreateNestedManyWithoutFeaturesInput | No |
| countries | CountryCreateNestedManyWithoutFeaturesInput | No |
| packages | PackageCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| type | FeatureType | No |
| industries | IndustryUncheckedCreateNestedManyWithoutFeaturesInput | No |
| countries | CountryUncheckedCreateNestedManyWithoutFeaturesInput | No |
| packages | PackageUncheckedCreateNestedManyWithoutFeaturesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| create | FeatureCreateWithoutPromotionsInput | FeatureUncheckedCreateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| categories | CategoryCreateNestedManyWithoutIndustriesInput | No |
| features | FeatureCreateNestedManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| categories | CategoryUncheckedCreateNestedManyWithoutIndustriesInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryWhereUniqueInput | No |
| create | IndustryCreateWithoutPromotionsInput | IndustryUncheckedCreateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| user | UserCreateNestedManyWithoutCountryInput | No |
| brandTemplate | BrandTemplateCreateNestedManyWithoutCountryInput | No |
| features | FeatureCreateNestedManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| user | UserUncheckedCreateNestedManyWithoutCountryInput | No |
| brandTemplate | BrandTemplateUncheckedCreateNestedManyWithoutCountryInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| create | CountryCreateWithoutPromotionsInput | CountryUncheckedCreateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| prices | PackagePriceCreateNestedManyWithoutPackageInput | No |
| features | FeatureCreateNestedManyWithoutPackagesInput | No |
| payment | PaymentCreateNestedManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| prices | PackagePriceUncheckedCreateNestedManyWithoutPackageInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutPackagesInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutPackageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereUniqueInput | No |
| create | PackageCreateWithoutPromotionsInput | PackageUncheckedCreateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPromotionInput | UserUncheckedCreateWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| update | FeatureUpdateWithoutPromotionsInput | FeatureUncheckedUpdateWithoutPromotionsInput | No |
| create | FeatureCreateWithoutPromotionsInput | FeatureUncheckedCreateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureWhereUniqueInput | No |
| data | FeatureUpdateWithoutPromotionsInput | FeatureUncheckedUpdateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FeatureScalarWhereInput | No |
| data | FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryWhereUniqueInput | No |
| update | IndustryUpdateWithoutPromotionsInput | IndustryUncheckedUpdateWithoutPromotionsInput | No |
| create | IndustryCreateWithoutPromotionsInput | IndustryUncheckedCreateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryWhereUniqueInput | No |
| data | IndustryUpdateWithoutPromotionsInput | IndustryUncheckedUpdateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryScalarWhereInput | No |
| data | IndustryUpdateManyMutationInput | IndustryUncheckedUpdateManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| update | CountryUpdateWithoutPromotionsInput | CountryUncheckedUpdateWithoutPromotionsInput | No |
| create | CountryCreateWithoutPromotionsInput | CountryUncheckedCreateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| data | CountryUpdateWithoutPromotionsInput | CountryUncheckedUpdateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryScalarWhereInput | No |
| data | CountryUpdateManyMutationInput | CountryUncheckedUpdateManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereUniqueInput | No |
| update | PackageUpdateWithoutPromotionsInput | PackageUncheckedUpdateWithoutPromotionsInput | No |
| create | PackageCreateWithoutPromotionsInput | PackageUncheckedCreateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereUniqueInput | No |
| data | PackageUpdateWithoutPromotionsInput | PackageUncheckedUpdateWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageScalarWhereInput | No |
| data | PackageUpdateManyMutationInput | PackageUncheckedUpdateManyWithoutPromotionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutPromotionInput | UserUncheckedUpdateWithoutPromotionInput | No |
| create | UserCreateWithoutPromotionInput | UserUncheckedCreateWithoutPromotionInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutPromotionInput | UserUncheckedUpdateWithoutPromotionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| prices | PackagePriceCreateNestedManyWithoutPackageInput | No |
| features | FeatureCreateNestedManyWithoutPackagesInput | No |
| promotions | PromotionCreateNestedManyWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| color | String | Null | Yes |
| level | Int | No |
| prices | PackagePriceUncheckedCreateNestedManyWithoutPackageInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutPackagesInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutPackagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereUniqueInput | No |
| create | PackageCreateWithoutPaymentInput | PackageUncheckedCreateWithoutPaymentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPaymentInput | UserUncheckedCreateWithoutPaymentInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PackageUpdateWithoutPaymentInput | PackageUncheckedUpdateWithoutPaymentInput | No |
| create | PackageCreateWithoutPaymentInput | PackageUncheckedCreateWithoutPaymentInput | No |
| where | PackageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PackageWhereInput | No |
| data | PackageUpdateWithoutPaymentInput | PackageUncheckedUpdateWithoutPaymentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| prices | PackagePriceUpdateManyWithoutPackageNestedInput | No |
| features | FeatureUpdateManyWithoutPackagesNestedInput | No |
| promotions | PromotionUpdateManyWithoutPackagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| prices | PackagePriceUncheckedUpdateManyWithoutPackageNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutPackagesNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutPackagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutPaymentInput | UserUncheckedUpdateWithoutPaymentInput | No |
| create | UserCreateWithoutPaymentInput | UserUncheckedCreateWithoutPaymentInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutPaymentInput | UserUncheckedUpdateWithoutPaymentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| promotions | PromotionCreateNestedManyWithoutIndustriesInput | No |
| features | FeatureCreateNestedManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutIndustriesInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutIndustriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryWhereUniqueInput | No |
| create | IndustryCreateWithoutCategoriesInput | IndustryUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| image | ImageCreateNestedOneWithoutBrandTemplateInput | No |
| country | CountryCreateNestedOneWithoutBrandTemplateInput | No |
| telNumbers | TelCreateNestedManyWithoutBrandTemplateInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTemplatesInput | No |
| reviewer | UserCreateNestedOneWithoutReviewedTemplatesInput | No |
| client_edits | ClientEditCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| telNumbers | TelUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| client_edits | ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| create | BrandTemplateCreateWithoutCategoryInput | BrandTemplateUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BrandTemplateCreateManyCategoryInput | BrandTemplateCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryWhereUniqueInput | No |
| update | IndustryUpdateWithoutCategoriesInput | IndustryUncheckedUpdateWithoutCategoriesInput | No |
| create | IndustryCreateWithoutCategoriesInput | IndustryUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryWhereUniqueInput | No |
| data | IndustryUpdateWithoutCategoriesInput | IndustryUncheckedUpdateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | IndustryScalarWhereInput | No |
| data | IndustryUpdateManyMutationInput | IndustryUncheckedUpdateManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| update | BrandTemplateUpdateWithoutCategoryInput | BrandTemplateUncheckedUpdateWithoutCategoryInput | No |
| create | BrandTemplateCreateWithoutCategoryInput | BrandTemplateUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| data | BrandTemplateUpdateWithoutCategoryInput | BrandTemplateUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateScalarWhereInput | No |
| data | BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| category | CategoryCreateNestedOneWithoutBrandTemplateInput | No |
| country | CountryCreateNestedOneWithoutBrandTemplateInput | No |
| telNumbers | TelCreateNestedManyWithoutBrandTemplateInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTemplatesInput | No |
| reviewer | UserCreateNestedOneWithoutReviewedTemplatesInput | No |
| client_edits | ClientEditCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| telNumbers | TelUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| client_edits | ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| create | BrandTemplateCreateWithoutImageInput | BrandTemplateUncheckedCreateWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BrandTemplateCreateManyImageInput | BrandTemplateCreateManyImageInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| update | BrandTemplateUpdateWithoutImageInput | BrandTemplateUncheckedUpdateWithoutImageInput | No |
| create | BrandTemplateCreateWithoutImageInput | BrandTemplateUncheckedCreateWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| data | BrandTemplateUpdateWithoutImageInput | BrandTemplateUncheckedUpdateWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateScalarWhereInput | No |
| data | BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutClientEditsInput | UserUncheckedCreateWithoutClientEditsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| image | ImageCreateNestedOneWithoutBrandTemplateInput | No |
| category | CategoryCreateNestedOneWithoutBrandTemplateInput | No |
| country | CountryCreateNestedOneWithoutBrandTemplateInput | No |
| telNumbers | TelCreateNestedManyWithoutBrandTemplateInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTemplatesInput | No |
| reviewer | UserCreateNestedOneWithoutReviewedTemplatesInput | No |
| implementationRatings | ClientRatingCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| telNumbers | TelUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| create | BrandTemplateCreateWithoutClient_editsInput | BrandTemplateUncheckedCreateWithoutClient_editsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutClientEditsInput | UserUncheckedUpdateWithoutClientEditsInput | No |
| create | UserCreateWithoutClientEditsInput | UserUncheckedCreateWithoutClientEditsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutClientEditsInput | UserUncheckedUpdateWithoutClientEditsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BrandTemplateUpdateWithoutClient_editsInput | BrandTemplateUncheckedUpdateWithoutClient_editsInput | No |
| create | BrandTemplateCreateWithoutClient_editsInput | BrandTemplateUncheckedCreateWithoutClient_editsInput | No |
| where | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereInput | No |
| data | BrandTemplateUpdateWithoutClient_editsInput | BrandTemplateUncheckedUpdateWithoutClient_editsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| image | ImageCreateNestedOneWithoutBrandTemplateInput | No |
| category | CategoryCreateNestedOneWithoutBrandTemplateInput | No |
| country | CountryCreateNestedOneWithoutBrandTemplateInput | No |
| telNumbers | TelCreateNestedManyWithoutBrandTemplateInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTemplatesInput | No |
| reviewer | UserCreateNestedOneWithoutReviewedTemplatesInput | No |
| client_edits | ClientEditCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| telNumbers | TelUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| client_edits | ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| create | BrandTemplateCreateWithoutImplementationRatingsInput | BrandTemplateUncheckedCreateWithoutImplementationRatingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereInput | No |
| data | BrandTemplateUpdateWithoutImplementationRatingsInput | BrandTemplateUncheckedUpdateWithoutImplementationRatingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| image | ImageCreateNestedOneWithoutBrandTemplateInput | No |
| category | CategoryCreateNestedOneWithoutBrandTemplateInput | No |
| country | CountryCreateNestedOneWithoutBrandTemplateInput | No |
| createdBy | UserCreateNestedOneWithoutCreatedTemplatesInput | No |
| reviewer | UserCreateNestedOneWithoutReviewedTemplatesInput | No |
| client_edits | ClientEditCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| client_edits | ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| implementationRatings | ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereUniqueInput | No |
| create | BrandTemplateCreateWithoutTelNumbersInput | BrandTemplateUncheckedCreateWithoutTelNumbersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BrandTemplateUpdateWithoutTelNumbersInput | BrandTemplateUncheckedUpdateWithoutTelNumbersInput | No |
| create | BrandTemplateCreateWithoutTelNumbersInput | BrandTemplateUncheckedCreateWithoutTelNumbersInput | No |
| where | BrandTemplateWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BrandTemplateWhereInput | No |
| data | BrandTemplateUpdateWithoutTelNumbersInput | BrandTemplateUncheckedUpdateWithoutTelNumbersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| incomplete | Boolean | Null | Yes |
| incompleteMessage | String | Null | Yes |
| isTransparent | Boolean | Null | Yes |
| side | ImageSide | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| incomplete | Boolean | Null | Yes |
| incompleteMessage | String | Null | Yes |
| isTransparent | Boolean | Null | Yes |
| side | ImageSide | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| create | ImageCreateWithoutBrandTemplateInput | ImageUncheckedCreateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| icon | String | Null | Yes |
| createdBy | String | Null | Yes |
| createdAt | DateTime | No |
| industries | IndustryCreateNestedManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| icon | String | Null | Yes |
| createdBy | String | Null | Yes |
| createdAt | DateTime | No |
| industries | IndustryUncheckedCreateNestedManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutBrandTemplateInput | CategoryUncheckedCreateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| user | UserCreateNestedManyWithoutCountryInput | No |
| promotions | PromotionCreateNestedManyWithoutCountriesInput | No |
| features | FeatureCreateNestedManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| user | UserUncheckedCreateNestedManyWithoutCountryInput | No |
| promotions | PromotionUncheckedCreateNestedManyWithoutCountriesInput | No |
| features | FeatureUncheckedCreateNestedManyWithoutCountriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| create | CountryCreateWithoutBrandTemplateInput | CountryUncheckedCreateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| number | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| number | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TelWhereUniqueInput | No |
| create | TelCreateWithoutBrandTemplateInput | TelUncheckedCreateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TelCreateManyBrandTemplateInput | TelCreateManyBrandTemplateInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| reviewedTemplates | BrandTemplateCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| reviewedTemplates | BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCreatedTemplatesInput | UserUncheckedCreateWithoutCreatedTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| role | RoleCreateNestedOneWithoutUserInput | No |
| country | CountryCreateNestedOneWithoutUserInput | No |
| teams | TeamCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateCreateNestedManyWithoutCreatedByInput | No |
| clientEdits | ClientEditCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| teams | TeamUncheckedCreateNestedManyWithoutUserInput | No |
| assignedTasks | TaskUncheckedCreateNestedManyWithoutAssigneeInput | No |
| createdTasks | TaskUncheckedCreateNestedManyWithoutCreatedByInput | No |
| promotion | PromotionUncheckedCreateNestedManyWithoutCreatedByInput | No |
| payment | PaymentUncheckedCreateNestedManyWithoutCashierInput | No |
| createdTemplates | BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput | No |
| clientEdits | ClientEditUncheckedCreateNestedManyWithoutApprovedByInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutReviewedTemplatesInput | UserUncheckedCreateWithoutReviewedTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | Null | Yes |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | Null | Yes |
| approvedTime | DateTime | Null | Yes |
| approvedBy | UserCreateNestedOneWithoutClientEditsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | Null | Yes |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | Null | Yes |
| approvedTime | DateTime | Null | Yes |
| approvedById | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ClientEditWhereUniqueInput | No |
| create | ClientEditCreateWithoutBrandTemplateInput | ClientEditUncheckedCreateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ClientEditCreateManyBrandTemplateInput | ClientEditCreateManyBrandTemplateInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| client_id | String | No |
| rating | Int | No |
| goodImplematation | Boolean | Null | Yes |
| comment | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| client_id | String | No |
| rating | Int | No |
| goodImplematation | Boolean | Null | Yes |
| comment | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ClientRatingWhereUniqueInput | No |
| create | ClientRatingCreateWithoutBrandTemplateInput | ClientRatingUncheckedCreateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ClientRatingCreateManyBrandTemplateInput | ClientRatingCreateManyBrandTemplateInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | ImageUpdateWithoutBrandTemplateInput | ImageUncheckedUpdateWithoutBrandTemplateInput | No |
| create | ImageCreateWithoutBrandTemplateInput | ImageUncheckedCreateWithoutBrandTemplateInput | No |
| where | ImageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereInput | No |
| data | ImageUpdateWithoutBrandTemplateInput | ImageUncheckedUpdateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| incomplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| incompleteMessage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isTransparent | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| side | ImageSide | EnumImageSideFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| incomplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| incompleteMessage | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isTransparent | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| side | ImageSide | EnumImageSideFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CategoryUpdateWithoutBrandTemplateInput | CategoryUncheckedUpdateWithoutBrandTemplateInput | No |
| create | CategoryCreateWithoutBrandTemplateInput | CategoryUncheckedCreateWithoutBrandTemplateInput | No |
| where | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereInput | No |
| data | CategoryUpdateWithoutBrandTemplateInput | CategoryUncheckedUpdateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdBy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| industries | IndustryUpdateManyWithoutCategoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdBy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| industries | IndustryUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CountryUpdateWithoutBrandTemplateInput | CountryUncheckedUpdateWithoutBrandTemplateInput | No |
| create | CountryCreateWithoutBrandTemplateInput | CountryUncheckedCreateWithoutBrandTemplateInput | No |
| where | CountryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereInput | No |
| data | CountryUpdateWithoutBrandTemplateInput | CountryUncheckedUpdateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateManyWithoutCountryNestedInput | No |
| promotions | PromotionUpdateManyWithoutCountriesNestedInput | No |
| features | FeatureUpdateManyWithoutCountriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user | UserUncheckedUpdateManyWithoutCountryNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutCountriesNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutCountriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TelWhereUniqueInput | No |
| update | TelUpdateWithoutBrandTemplateInput | TelUncheckedUpdateWithoutBrandTemplateInput | No |
| create | TelCreateWithoutBrandTemplateInput | TelUncheckedCreateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TelWhereUniqueInput | No |
| data | TelUpdateWithoutBrandTemplateInput | TelUncheckedUpdateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TelScalarWhereInput | No |
| data | TelUpdateManyMutationInput | TelUncheckedUpdateManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TelScalarWhereInput | TelScalarWhereInput[] | No |
| OR | TelScalarWhereInput[] | No |
| NOT | TelScalarWhereInput | TelScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| number | StringFilter | String | No |
| brandTemplateId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCreatedTemplatesInput | UserUncheckedUpdateWithoutCreatedTemplatesInput | No |
| create | UserCreateWithoutCreatedTemplatesInput | UserUncheckedCreateWithoutCreatedTemplatesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutCreatedTemplatesInput | UserUncheckedUpdateWithoutCreatedTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutReviewedTemplatesInput | UserUncheckedUpdateWithoutReviewedTemplatesInput | No |
| create | UserCreateWithoutReviewedTemplatesInput | UserUncheckedCreateWithoutReviewedTemplatesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutReviewedTemplatesInput | UserUncheckedUpdateWithoutReviewedTemplatesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientEditWhereUniqueInput | No |
| update | ClientEditUpdateWithoutBrandTemplateInput | ClientEditUncheckedUpdateWithoutBrandTemplateInput | No |
| create | ClientEditCreateWithoutBrandTemplateInput | ClientEditUncheckedCreateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientEditWhereUniqueInput | No |
| data | ClientEditUpdateWithoutBrandTemplateInput | ClientEditUncheckedUpdateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientEditScalarWhereInput | No |
| data | ClientEditUpdateManyMutationInput | ClientEditUncheckedUpdateManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientRatingWhereUniqueInput | No |
| update | ClientRatingUpdateWithoutBrandTemplateInput | ClientRatingUncheckedUpdateWithoutBrandTemplateInput | No |
| create | ClientRatingCreateWithoutBrandTemplateInput | ClientRatingUncheckedCreateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientRatingWhereUniqueInput | No |
| data | ClientRatingUpdateWithoutBrandTemplateInput | ClientRatingUncheckedUpdateWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClientRatingScalarWhereInput | No |
| data | ClientRatingUpdateManyMutationInput | ClientRatingUncheckedUpdateManyWithoutBrandTemplateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ClientRatingScalarWhereInput | ClientRatingScalarWhereInput[] | No |
| OR | ClientRatingScalarWhereInput[] | No |
| NOT | ClientRatingScalarWhereInput | ClientRatingScalarWhereInput[] | No |
| id | StringFilter | String | No |
| client_id | StringFilter | String | No |
| rating | IntFilter | Int | No |
| goodImplematation | BoolNullableFilter | Boolean | Null | Yes |
| comment | StringNullableFilter | String | Null | Yes |
| brandTemplateId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUpdateManyWithoutPromotionsNestedInput | No |
| createdBy | UserUpdateOneWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdBy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| brandTemplate | BrandTemplateUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdBy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| brandTemplate | BrandTemplateUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| icon | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdBy | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| countries | CountryUpdateManyWithoutFeaturesNestedInput | No |
| promotions | PromotionUpdateManyWithoutFeaturesNestedInput | No |
| packages | PackageUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| countries | CountryUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| packages | PackageUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| roleId | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUpdateManyWithoutPromotionsNestedInput | No |
| industries | IndustryUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUpdateManyWithoutPromotionsNestedInput | No |
| createdBy | UserUpdateOneWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| industries | IndustryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| industries | IndustryUpdateManyWithoutFeaturesNestedInput | No |
| promotions | PromotionUpdateManyWithoutFeaturesNestedInput | No |
| packages | PackageUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| industries | IndustryUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| packages | PackageUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| GoalId | String | Null | Yes |
| createdById | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| GoalId | String | Null | Yes |
| assigneeId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | Null | Yes |
| packageId | String | No |
| paymentMethod | String | No |
| revoked | Boolean | Null | Yes |
| createAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | Null | Yes |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | Null | Yes |
| approvedTime | DateTime | Null | Yes |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| goals | GoalUpdateManyWithoutTeamsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| goals | GoalUncheckedUpdateManyWithoutTeamsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| Goal | GoalUpdateOneWithoutTasksNestedInput | No |
| createdBy | UserUpdateOneWithoutCreatedTasksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| GoalId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| GoalId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| Goal | GoalUpdateOneWithoutTasksNestedInput | No |
| assignee | UserUpdateOneWithoutAssignedTasksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| GoalId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| assigneeId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| GoalId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| assigneeId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUpdateManyWithoutPromotionsNestedInput | No |
| industries | IndustryUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUpdateManyWithoutPromotionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| industries | IndustryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| package | PackageUpdateOneRequiredWithoutPaymentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| packageId | String | StringFieldUpdateOperationsInput | No |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| packageId | String | StringFieldUpdateOperationsInput | No |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| brandTemplate | BrandTemplateUpdateOneRequiredWithoutClient_editsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| brandTemplateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| brandTemplateId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | Null | Yes |
| token | String | Null | Yes |
| fcm_token | String | Null | Yes |
| avatar | String | Null | Yes |
| suspendendAt | DateTime | Null | Yes |
| status | UserStatus | Null | Yes |
| streetAddress | String | Null | Yes |
| city | String | Null | Yes |
| cell | String | Null | Yes |
| tell | String | Null | Yes |
| verificationCode | Int | Null | Yes |
| countryId | String | Null | Yes |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| accessLevel | PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| accessLevel | PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| accessLevel | PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user | UserUncheckedUpdateManyWithoutRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| active | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isComplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| tasks | TaskUpdateManyWithoutGoalNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| active | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isComplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| tasks | TaskUncheckedUpdateManyWithoutGoalNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deadline | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| active | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| isComplete | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | Null | Yes |
| createdAt | DateTime | No |
| startDate | DateTime | Null | Yes |
| dueDate | DateTime | Null | Yes |
| priority | TaskPriority | Null | Yes |
| stage | TaskStage | Null | Yes |
| assigneeId | String | Null | Yes |
| createdById | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutTeamsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| userId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| leader | String | StringFieldUpdateOperationsInput | No |
| userId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| assignee | UserUpdateOneWithoutAssignedTasksNestedInput | No |
| createdBy | UserUpdateOneWithoutCreatedTasksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| assigneeId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| comments | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| dueDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| priority | TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null | Yes |
| stage | TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null | Yes |
| assigneeId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| promotions | PromotionUpdateManyWithoutIndustriesNestedInput | No |
| categories | CategoryUpdateManyWithoutIndustriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutIndustriesNestedInput | No |
| categories | CategoryUncheckedUpdateManyWithoutIndustriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateManyWithoutCountryNestedInput | No |
| promotions | PromotionUpdateManyWithoutCountriesNestedInput | No |
| brandTemplate | BrandTemplateUpdateManyWithoutCountryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user | UserUncheckedUpdateManyWithoutCountryNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutCountriesNestedInput | No |
| brandTemplate | BrandTemplateUncheckedUpdateManyWithoutCountryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| industries | IndustryUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUpdateManyWithoutPromotionsNestedInput | No |
| createdBy | UserUpdateOneWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| industries | IndustryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| packages | PackageUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| prices | PackagePriceUpdateManyWithoutPackageNestedInput | No |
| promotions | PromotionUpdateManyWithoutPackagesNestedInput | No |
| payment | PaymentUpdateManyWithoutPackageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| prices | PackagePriceUncheckedUpdateManyWithoutPackageNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutPackagesNestedInput | No |
| payment | PaymentUncheckedUpdateManyWithoutPackageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | Null | Yes |
| paymentMethod | String | No |
| cashierId | String | No |
| revoked | Boolean | Null | Yes |
| createAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| duration | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| extentionTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| duration | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| extentionTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| duration | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| extentionTime | Float | NullableFloatFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| industries | IndustryUpdateManyWithoutFeaturesNestedInput | No |
| countries | CountryUpdateManyWithoutFeaturesNestedInput | No |
| promotions | PromotionUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| industries | IndustryUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| countries | CountryUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUpdateManyWithoutPromotionsNestedInput | No |
| industries | IndustryUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUpdateManyWithoutPromotionsNestedInput | No |
| createdBy | UserUpdateOneWithoutPromotionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| features | FeatureUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| industries | IndustryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| countries | CountryUncheckedUpdateManyWithoutPromotionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| endDate | DateTime | DateTimeFieldUpdateOperationsInput | No |
| createdById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| cashier | UserUpdateOneRequiredWithoutPaymentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| cashierId | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| date | DateTime | DateTimeFieldUpdateOperationsInput | No |
| center | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| paymentMethod | String | StringFieldUpdateOperationsInput | No |
| cashierId | String | StringFieldUpdateOperationsInput | No |
| revoked | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| createAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| industries | IndustryUpdateManyWithoutFeaturesNestedInput | No |
| countries | CountryUpdateManyWithoutFeaturesNestedInput | No |
| packages | PackageUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| industries | IndustryUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| countries | CountryUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| packages | PackageUncheckedUpdateManyWithoutFeaturesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | FeatureType | EnumFeatureTypeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| categories | CategoryUpdateManyWithoutIndustriesNestedInput | No |
| features | FeatureUpdateManyWithoutIndustriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| categories | CategoryUncheckedUpdateManyWithoutIndustriesNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutIndustriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user | UserUpdateManyWithoutCountryNestedInput | No |
| brandTemplate | BrandTemplateUpdateManyWithoutCountryNestedInput | No |
| features | FeatureUpdateManyWithoutCountriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user | UserUncheckedUpdateManyWithoutCountryNestedInput | No |
| brandTemplate | BrandTemplateUncheckedUpdateManyWithoutCountryNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutCountriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| prices | PackagePriceUpdateManyWithoutPackageNestedInput | No |
| features | FeatureUpdateManyWithoutPackagesNestedInput | No |
| payment | PaymentUpdateManyWithoutPackageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| prices | PackagePriceUncheckedUpdateManyWithoutPackageNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutPackagesNestedInput | No |
| payment | PaymentUncheckedUpdateManyWithoutPackageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| imageId | String | Null | Yes |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| promotions | PromotionUpdateManyWithoutIndustriesNestedInput | No |
| features | FeatureUpdateManyWithoutIndustriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| promotions | PromotionUncheckedUpdateManyWithoutIndustriesNestedInput | No |
| features | FeatureUncheckedUpdateManyWithoutIndustriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | Null | Yes |
| tags | BrandTemplateCreatetagsInput | String | No |
| threeDImage | String | Null | Yes |
| video | String | Null | Yes |
| sizes | BrandTemplateCreatesizesInput | String | No |
| units | BrandTemplateCreateunitsInput | String | No |
| categoryId | String | No |
| addon_categories | BrandTemplateCreateaddon_categoriesInput | String | No |
| varieties | BrandTemplateCreatevarietiesInput | String | No |
| manufacturer | String | No |
| street_address | String | Null | Yes |
| city | String | Null | Yes |
| countryId | String | Null | Yes |
| String | Null | Yes | |
| website | String | Null | Yes |
| draftNotes | String | Null | Yes |
| draftType | String | Null | Yes |
| draftCreatedAt | DateTime | No |
| createdById | String | Null | Yes |
| createdAt | DateTime | No |
| reviewedAt | DateTime | Null | Yes |
| reviewNotes | String | Null | Yes |
| reviewerId | String | Null | Yes |
| inReview | Boolean | Null | Yes |
| isApproved | Boolean | Null | Yes |
| lastModified | DateTime | No |
| creatorClientId | String | Null | Yes |
| creatorClientProductId | String | Null | Yes |
| fromClientCleanedBy | String | Null | Yes |
| hasZeroDepositOrder | Boolean | Null | Yes |
| hasTransparencyAll | Boolean | Null | Yes |
| isNotForUnder18 | Boolean | Null | Yes |
| isDirty | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| number | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | Null | Yes |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | Null | Yes |
| approvedTime | DateTime | Null | Yes |
| approvedById | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| client_id | String | No |
| rating | Int | No |
| goodImplematation | Boolean | Null | Yes |
| comment | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| number | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| number | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| number | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| approvedBy | UserUpdateOneWithoutClientEditsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| approvedById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| clientId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| action | ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput | No |
| field | String | StringFieldUpdateOperationsInput | No |
| newValue | String | StringFieldUpdateOperationsInput | No |
| oldValue | String | StringFieldUpdateOperationsInput | No |
| approved | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| approvedTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| approvedById | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| client_id | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| goodImplematation | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| client_id | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| goodImplematation | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| client_id | String | StringFieldUpdateOperationsInput | No |
| rating | Int | IntFieldUpdateOperationsInput | No |
| goodImplematation | Boolean | NullableBoolFieldUpdateOperationsInput | Null | Yes |
| comment | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| promotions | Promotion[] | No |
| categories | Category[] | No |
| features | Feature[] | No |
| _count | IndustryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| user | User[] | No |
| promotions | Promotion[] | No |
| brandTemplate | BrandTemplate[] | No |
| features | Feature[] | No |
| _count | CountryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| String | Yes | |
| password | String | No |
| token | String | No |
| fcm_token | String | No |
| avatar | String | No |
| roleId | String | No |
| suspendendAt | DateTime | No |
| status | UserStatus | No |
| streetAddress | String | No |
| city | String | No |
| cell | String | No |
| tell | String | No |
| verificationCode | Int | No |
| countryId | String | No |
| createdAt | DateTime | Yes |
| role | Role | No |
| country | Country | No |
| teams | Team[] | No |
| assignedTasks | Task[] | No |
| createdTasks | Task[] | No |
| promotion | Promotion[] | No |
| payment | Payment[] | No |
| createdTemplates | BrandTemplate[] | No |
| reviewedTemplates | BrandTemplate[] | No |
| clientEdits | ClientEdit[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| permissions | Permissions[] | No |
| user | User[] | No |
| _count | RoleCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| domain | String | Yes |
| accessLevel | PermissionTypes | Yes |
| Role | Role[] | No |
| _count | PermissionsCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| createdAt | DateTime | Yes |
| leader | String | Yes |
| userId | String | No |
| user | User | No |
| goals | Goal[] | No |
| _count | TeamCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| title | String | Yes |
| description | String | No |
| startDate | DateTime | No |
| createdAt | DateTime | Yes |
| deadline | DateTime | No |
| active | Boolean | No |
| isComplete | Boolean | No |
| teams | Team[] | No |
| tasks | Task[] | No |
| _count | GoalCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| title | String | Yes |
| comments | String | No |
| createdAt | DateTime | Yes |
| startDate | DateTime | No |
| dueDate | DateTime | No |
| priority | TaskPriority | No |
| stage | TaskStage | No |
| GoalId | String | No |
| assigneeId | String | No |
| createdById | String | No |
| Goal | Goal | No |
| assignee | User | No |
| createdBy | User | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| type | FeatureType | Yes |
| industries | Industry[] | No |
| countries | Country[] | No |
| promotions | Promotion[] | No |
| packages | Package[] | No |
| _count | FeatureCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| color | String | No |
| level | Int | Yes |
| prices | PackagePrice[] | No |
| features | Feature[] | No |
| promotions | Promotion[] | No |
| payment | Payment[] | No |
| _count | PackageCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| duration | Float | Yes |
| amount | Float | Yes |
| extentionTime | Float | No |
| packageId | String | No |
| Package | Package | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| startDate | DateTime | Yes |
| endDate | DateTime | Yes |
| createdById | String | No |
| createdAt | DateTime | Yes |
| features | Feature[] | No |
| industries | Industry[] | No |
| countries | Country[] | No |
| packages | Package[] | No |
| createdBy | User | No |
| _count | PromotionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| amount | Decimal | Yes |
| date | DateTime | Yes |
| center | String | No |
| packageId | String | Yes |
| paymentMethod | String | Yes |
| cashierId | String | Yes |
| revoked | Boolean | No |
| createAt | DateTime | Yes |
| package | Package | Yes |
| cashier | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| icon | String | No |
| createdBy | String | No |
| createdAt | DateTime | Yes |
| industries | Industry[] | No |
| brandTemplate | BrandTemplate[] | No |
| _count | CategoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| url | String | Yes |
| incomplete | Boolean | No |
| incompleteMessage | String | No |
| isTransparent | Boolean | No |
| side | ImageSide | Yes |
| brandTemplate | BrandTemplate[] | No |
| _count | ImageCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| clientId | String | No |
| action | ClientEditAction | Yes |
| field | String | Yes |
| newValue | String | Yes |
| oldValue | String | Yes |
| approved | Boolean | No |
| approvedTime | DateTime | No |
| approvedById | String | No |
| brandTemplateId | String | Yes |
| approvedBy | User | No |
| brandTemplate | BrandTemplate | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| client_id | String | Yes |
| rating | Int | Yes |
| goodImplematation | Boolean | No |
| comment | String | No |
| brandTemplateId | String | Yes |
| brandTemplate | BrandTemplate | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| number | String | Yes |
| brandTemplateId | String | Yes |
| brandTemplate | BrandTemplate | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| tags | String | No |
| imageId | String | No |
| threeDImage | String | No |
| video | String | No |
| sizes | String | No |
| units | String | No |
| categoryId | String | Yes |
| addon_categories | String | No |
| varieties | String | No |
| manufacturer | String | Yes |
| street_address | String | No |
| city | String | No |
| countryId | String | No |
| String | No | |
| website | String | No |
| draftNotes | String | No |
| draftType | String | No |
| draftCreatedAt | DateTime | Yes |
| createdById | String | No |
| createdAt | DateTime | Yes |
| reviewedAt | DateTime | No |
| reviewNotes | String | No |
| reviewerId | String | No |
| inReview | Boolean | No |
| isApproved | Boolean | No |
| lastModified | DateTime | Yes |
| creatorClientId | String | No |
| creatorClientProductId | String | No |
| fromClientCleanedBy | String | No |
| hasZeroDepositOrder | Boolean | No |
| hasTransparencyAll | Boolean | No |
| isNotForUnder18 | Boolean | No |
| isDirty | Boolean | No |
| image | Image | No |
| category | Category | Yes |
| country | Country | No |
| telNumbers | Tel[] | No |
| createdBy | User | No |
| reviewer | User | No |
| client_edits | ClientEdit[] | No |
| implementationRatings | ClientRating[] | No |
| _count | BrandTemplateCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | IndustryCountAggregateOutputType | No |
| _min | IndustryMinAggregateOutputType | No |
| _max | IndustryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| _count | IndustryCountAggregateOutputType | No |
| _min | IndustryMinAggregateOutputType | No |
| _max | IndustryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CountryCountAggregateOutputType | No |
| _min | CountryMinAggregateOutputType | No |
| _max | CountryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| _count | CountryCountAggregateOutputType | No |
| _min | CountryMinAggregateOutputType | No |
| _max | CountryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| String | Yes | |
| password | String | No |
| token | String | No |
| fcm_token | String | No |
| avatar | String | No |
| roleId | String | No |
| suspendendAt | DateTime | No |
| status | UserStatus | No |
| streetAddress | String | No |
| city | String | No |
| cell | String | No |
| tell | String | No |
| verificationCode | Int | No |
| countryId | String | No |
| createdAt | DateTime | Yes |
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RoleCountAggregateOutputType | No |
| _min | RoleMinAggregateOutputType | No |
| _max | RoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| _count | RoleCountAggregateOutputType | No |
| _min | RoleMinAggregateOutputType | No |
| _max | RoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PermissionsCountAggregateOutputType | No |
| _min | PermissionsMinAggregateOutputType | No |
| _max | PermissionsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| domain | String | Yes |
| accessLevel | PermissionTypes | Yes |
| _count | PermissionsCountAggregateOutputType | No |
| _min | PermissionsMinAggregateOutputType | No |
| _max | PermissionsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TeamCountAggregateOutputType | No |
| _min | TeamMinAggregateOutputType | No |
| _max | TeamMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| createdAt | DateTime | Yes |
| leader | String | Yes |
| userId | String | No |
| _count | TeamCountAggregateOutputType | No |
| _min | TeamMinAggregateOutputType | No |
| _max | TeamMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | GoalCountAggregateOutputType | No |
| _min | GoalMinAggregateOutputType | No |
| _max | GoalMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| title | String | Yes |
| description | String | No |
| startDate | DateTime | No |
| createdAt | DateTime | Yes |
| deadline | DateTime | No |
| active | Boolean | No |
| isComplete | Boolean | No |
| _count | GoalCountAggregateOutputType | No |
| _min | GoalMinAggregateOutputType | No |
| _max | GoalMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TaskCountAggregateOutputType | No |
| _min | TaskMinAggregateOutputType | No |
| _max | TaskMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| title | String | Yes |
| comments | String | No |
| createdAt | DateTime | Yes |
| startDate | DateTime | No |
| dueDate | DateTime | No |
| priority | TaskPriority | No |
| stage | TaskStage | No |
| GoalId | String | No |
| assigneeId | String | No |
| createdById | String | No |
| _count | TaskCountAggregateOutputType | No |
| _min | TaskMinAggregateOutputType | No |
| _max | TaskMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FeatureCountAggregateOutputType | No |
| _min | FeatureMinAggregateOutputType | No |
| _max | FeatureMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| type | FeatureType | Yes |
| _count | FeatureCountAggregateOutputType | No |
| _min | FeatureMinAggregateOutputType | No |
| _max | FeatureMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PackageCountAggregateOutputType | No |
| _avg | PackageAvgAggregateOutputType | No |
| _sum | PackageSumAggregateOutputType | No |
| _min | PackageMinAggregateOutputType | No |
| _max | PackageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| color | String | No |
| level | Int | Yes |
| _count | PackageCountAggregateOutputType | No |
| _avg | PackageAvgAggregateOutputType | No |
| _sum | PackageSumAggregateOutputType | No |
| _min | PackageMinAggregateOutputType | No |
| _max | PackageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PackagePriceCountAggregateOutputType | No |
| _avg | PackagePriceAvgAggregateOutputType | No |
| _sum | PackagePriceSumAggregateOutputType | No |
| _min | PackagePriceMinAggregateOutputType | No |
| _max | PackagePriceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| duration | Float | Yes |
| amount | Float | Yes |
| extentionTime | Float | No |
| packageId | String | No |
| _count | PackagePriceCountAggregateOutputType | No |
| _avg | PackagePriceAvgAggregateOutputType | No |
| _sum | PackagePriceSumAggregateOutputType | No |
| _min | PackagePriceMinAggregateOutputType | No |
| _max | PackagePriceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PromotionCountAggregateOutputType | No |
| _min | PromotionMinAggregateOutputType | No |
| _max | PromotionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| startDate | DateTime | Yes |
| endDate | DateTime | Yes |
| createdById | String | No |
| createdAt | DateTime | Yes |
| _count | PromotionCountAggregateOutputType | No |
| _min | PromotionMinAggregateOutputType | No |
| _max | PromotionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PaymentCountAggregateOutputType | No |
| _avg | PaymentAvgAggregateOutputType | No |
| _sum | PaymentSumAggregateOutputType | No |
| _min | PaymentMinAggregateOutputType | No |
| _max | PaymentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| amount | Decimal | Yes |
| date | DateTime | Yes |
| center | String | No |
| packageId | String | Yes |
| paymentMethod | String | Yes |
| cashierId | String | Yes |
| revoked | Boolean | No |
| createAt | DateTime | Yes |
| _count | PaymentCountAggregateOutputType | No |
| _avg | PaymentAvgAggregateOutputType | No |
| _sum | PaymentSumAggregateOutputType | No |
| _min | PaymentMinAggregateOutputType | No |
| _max | PaymentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CategoryCountAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| icon | String | No |
| createdBy | String | No |
| createdAt | DateTime | Yes |
| _count | CategoryCountAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ImageCountAggregateOutputType | No |
| _min | ImageMinAggregateOutputType | No |
| _max | ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| url | String | Yes |
| incomplete | Boolean | No |
| incompleteMessage | String | No |
| isTransparent | Boolean | No |
| side | ImageSide | Yes |
| _count | ImageCountAggregateOutputType | No |
| _min | ImageMinAggregateOutputType | No |
| _max | ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ClientEditCountAggregateOutputType | No |
| _min | ClientEditMinAggregateOutputType | No |
| _max | ClientEditMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| clientId | String | No |
| action | ClientEditAction | Yes |
| field | String | Yes |
| newValue | String | Yes |
| oldValue | String | Yes |
| approved | Boolean | No |
| approvedTime | DateTime | No |
| approvedById | String | No |
| brandTemplateId | String | Yes |
| _count | ClientEditCountAggregateOutputType | No |
| _min | ClientEditMinAggregateOutputType | No |
| _max | ClientEditMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ClientRatingCountAggregateOutputType | No |
| _avg | ClientRatingAvgAggregateOutputType | No |
| _sum | ClientRatingSumAggregateOutputType | No |
| _min | ClientRatingMinAggregateOutputType | No |
| _max | ClientRatingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| client_id | String | Yes |
| rating | Int | Yes |
| goodImplematation | Boolean | No |
| comment | String | No |
| brandTemplateId | String | Yes |
| _count | ClientRatingCountAggregateOutputType | No |
| _avg | ClientRatingAvgAggregateOutputType | No |
| _sum | ClientRatingSumAggregateOutputType | No |
| _min | ClientRatingMinAggregateOutputType | No |
| _max | ClientRatingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TelCountAggregateOutputType | No |
| _min | TelMinAggregateOutputType | No |
| _max | TelMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| number | String | Yes |
| brandTemplateId | String | Yes |
| _count | TelCountAggregateOutputType | No |
| _min | TelMinAggregateOutputType | No |
| _max | TelMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BrandTemplateCountAggregateOutputType | No |
| _min | BrandTemplateMinAggregateOutputType | No |
| _max | BrandTemplateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| description | String | No |
| tags | String | No |
| imageId | String | No |
| threeDImage | String | No |
| video | String | No |
| sizes | String | No |
| units | String | No |
| categoryId | String | Yes |
| addon_categories | String | No |
| varieties | String | No |
| manufacturer | String | Yes |
| street_address | String | No |
| city | String | No |
| countryId | String | No |
| String | No | |
| website | String | No |
| draftNotes | String | No |
| draftType | String | No |
| draftCreatedAt | DateTime | Yes |
| createdById | String | No |
| createdAt | DateTime | Yes |
| reviewedAt | DateTime | No |
| reviewNotes | String | No |
| reviewerId | String | No |
| inReview | Boolean | No |
| isApproved | Boolean | No |
| lastModified | DateTime | Yes |
| creatorClientId | String | No |
| creatorClientProductId | String | No |
| fromClientCleanedBy | String | No |
| hasZeroDepositOrder | Boolean | No |
| hasTransparencyAll | Boolean | No |
| isNotForUnder18 | Boolean | No |
| isDirty | Boolean | No |
| _count | BrandTemplateCountAggregateOutputType | No |
| _min | BrandTemplateMinAggregateOutputType | No |
| _max | BrandTemplateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| promotions | Int | Yes |
| categories | Int | Yes |
| features | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| user | Int | Yes |
| promotions | Int | Yes |
| brandTemplate | Int | Yes |
| features | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| teams | Int | Yes |
| assignedTasks | Int | Yes |
| createdTasks | Int | Yes |
| promotion | Int | Yes |
| payment | Int | Yes |
| createdTemplates | Int | Yes |
| reviewedTemplates | Int | Yes |
| clientEdits | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| Int | Yes | |
| password | Int | Yes |
| token | Int | Yes |
| fcm_token | Int | Yes |
| avatar | Int | Yes |
| roleId | Int | Yes |
| suspendendAt | Int | Yes |
| status | Int | Yes |
| streetAddress | Int | Yes |
| city | Int | Yes |
| cell | Int | Yes |
| tell | Int | Yes |
| verificationCode | Int | Yes |
| countryId | Int | Yes |
| createdAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| verificationCode | Float | No |
| Name | Type | Nullable |
|---|---|---|
| verificationCode | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| token | String | No |
| fcm_token | String | No |
| avatar | String | No |
| roleId | String | No |
| suspendendAt | DateTime | No |
| status | UserStatus | No |
| streetAddress | String | No |
| city | String | No |
| cell | String | No |
| tell | String | No |
| verificationCode | Int | No |
| countryId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| password | String | No |
| token | String | No |
| fcm_token | String | No |
| avatar | String | No |
| roleId | String | No |
| suspendendAt | DateTime | No |
| status | UserStatus | No |
| streetAddress | String | No |
| city | String | No |
| cell | String | No |
| tell | String | No |
| verificationCode | Int | No |
| countryId | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| permissions | Int | Yes |
| user | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| Name | Type | Nullable |
|---|---|---|
| Role | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| domain | Int | Yes |
| accessLevel | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| domain | String | No |
| accessLevel | PermissionTypes | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| domain | String | No |
| accessLevel | PermissionTypes | No |
| Name | Type | Nullable |
|---|---|---|
| goals | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| createdAt | Int | Yes |
| leader | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| createdAt | DateTime | No |
| leader | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| teams | Int | Yes |
| tasks | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| title | Int | Yes |
| description | Int | Yes |
| startDate | Int | Yes |
| createdAt | Int | Yes |
| deadline | Int | Yes |
| active | Int | Yes |
| isComplete | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| description | String | No |
| startDate | DateTime | No |
| createdAt | DateTime | No |
| deadline | DateTime | No |
| active | Boolean | No |
| isComplete | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| description | String | No |
| startDate | DateTime | No |
| createdAt | DateTime | No |
| deadline | DateTime | No |
| active | Boolean | No |
| isComplete | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| title | Int | Yes |
| comments | Int | Yes |
| createdAt | Int | Yes |
| startDate | Int | Yes |
| dueDate | Int | Yes |
| priority | Int | Yes |
| stage | Int | Yes |
| GoalId | Int | Yes |
| assigneeId | Int | Yes |
| createdById | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | No |
| createdAt | DateTime | No |
| startDate | DateTime | No |
| dueDate | DateTime | No |
| priority | TaskPriority | No |
| stage | TaskStage | No |
| GoalId | String | No |
| assigneeId | String | No |
| createdById | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| comments | String | No |
| createdAt | DateTime | No |
| startDate | DateTime | No |
| dueDate | DateTime | No |
| priority | TaskPriority | No |
| stage | TaskStage | No |
| GoalId | String | No |
| assigneeId | String | No |
| createdById | String | No |
| Name | Type | Nullable |
|---|---|---|
| industries | Int | Yes |
| countries | Int | Yes |
| promotions | Int | Yes |
| packages | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| type | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| type | FeatureType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| type | FeatureType | No |
| Name | Type | Nullable |
|---|---|---|
| prices | Int | Yes |
| features | Int | Yes |
| promotions | Int | Yes |
| payment | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| color | Int | Yes |
| level | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| level | Float | No |
| Name | Type | Nullable |
|---|---|---|
| level | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| color | String | No |
| level | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| color | String | No |
| level | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| duration | Int | Yes |
| amount | Int | Yes |
| extentionTime | Int | Yes |
| packageId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | No |
| Name | Type | Nullable |
|---|---|---|
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | No |
| packageId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| duration | Float | No |
| amount | Float | No |
| extentionTime | Float | No |
| packageId | String | No |
| Name | Type | Nullable |
|---|---|---|
| features | Int | Yes |
| industries | Int | Yes |
| countries | Int | Yes |
| packages | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| startDate | Int | Yes |
| endDate | Int | Yes |
| createdById | Int | Yes |
| createdAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdById | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| createdById | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| amount | Int | Yes |
| date | Int | Yes |
| center | Int | Yes |
| packageId | Int | Yes |
| paymentMethod | Int | Yes |
| cashierId | Int | Yes |
| revoked | Int | Yes |
| createAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| amount | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| amount | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | No |
| packageId | String | No |
| paymentMethod | String | No |
| cashierId | String | No |
| revoked | Boolean | No |
| createAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| amount | Decimal | No |
| date | DateTime | No |
| center | String | No |
| packageId | String | No |
| paymentMethod | String | No |
| cashierId | String | No |
| revoked | Boolean | No |
| createAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| industries | Int | Yes |
| brandTemplate | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| icon | Int | Yes |
| createdBy | Int | Yes |
| createdAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| icon | String | No |
| createdBy | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| icon | String | No |
| createdBy | String | No |
| createdAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| brandTemplate | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| url | Int | Yes |
| incomplete | Int | Yes |
| incompleteMessage | Int | Yes |
| isTransparent | Int | Yes |
| side | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| incomplete | Boolean | No |
| incompleteMessage | String | No |
| isTransparent | Boolean | No |
| side | ImageSide | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| url | String | No |
| incomplete | Boolean | No |
| incompleteMessage | String | No |
| isTransparent | Boolean | No |
| side | ImageSide | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| clientId | Int | Yes |
| action | Int | Yes |
| field | Int | Yes |
| newValue | Int | Yes |
| oldValue | Int | Yes |
| approved | Int | Yes |
| approvedTime | Int | Yes |
| approvedById | Int | Yes |
| brandTemplateId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | No |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | No |
| approvedTime | DateTime | No |
| approvedById | String | No |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| clientId | String | No |
| action | ClientEditAction | No |
| field | String | No |
| newValue | String | No |
| oldValue | String | No |
| approved | Boolean | No |
| approvedTime | DateTime | No |
| approvedById | String | No |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| client_id | Int | Yes |
| rating | Int | Yes |
| goodImplematation | Int | Yes |
| comment | Int | Yes |
| brandTemplateId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| rating | Float | No |
| Name | Type | Nullable |
|---|---|---|
| rating | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| client_id | String | No |
| rating | Int | No |
| goodImplematation | Boolean | No |
| comment | String | No |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| client_id | String | No |
| rating | Int | No |
| goodImplematation | Boolean | No |
| comment | String | No |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| number | Int | Yes |
| brandTemplateId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| number | String | No |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| number | String | No |
| brandTemplateId | String | No |
| Name | Type | Nullable |
|---|---|---|
| telNumbers | Int | Yes |
| client_edits | Int | Yes |
| implementationRatings | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| description | Int | Yes |
| tags | Int | Yes |
| imageId | Int | Yes |
| threeDImage | Int | Yes |
| video | Int | Yes |
| sizes | Int | Yes |
| units | Int | Yes |
| categoryId | Int | Yes |
| addon_categories | Int | Yes |
| varieties | Int | Yes |
| manufacturer | Int | Yes |
| street_address | Int | Yes |
| city | Int | Yes |
| countryId | Int | Yes |
| Int | Yes | |
| website | Int | Yes |
| draftNotes | Int | Yes |
| draftType | Int | Yes |
| draftCreatedAt | Int | Yes |
| createdById | Int | Yes |
| createdAt | Int | Yes |
| reviewedAt | Int | Yes |
| reviewNotes | Int | Yes |
| reviewerId | Int | Yes |
| inReview | Int | Yes |
| isApproved | Int | Yes |
| lastModified | Int | Yes |
| creatorClientId | Int | Yes |
| creatorClientProductId | Int | Yes |
| fromClientCleanedBy | Int | Yes |
| hasZeroDepositOrder | Int | Yes |
| hasTransparencyAll | Int | Yes |
| isNotForUnder18 | Int | Yes |
| isDirty | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| imageId | String | No |
| threeDImage | String | No |
| video | String | No |
| categoryId | String | No |
| manufacturer | String | No |
| street_address | String | No |
| city | String | No |
| countryId | String | No |
| String | No | |
| website | String | No |
| draftNotes | String | No |
| draftType | String | No |
| draftCreatedAt | DateTime | No |
| createdById | String | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | No |
| reviewNotes | String | No |
| reviewerId | String | No |
| inReview | Boolean | No |
| isApproved | Boolean | No |
| lastModified | DateTime | No |
| creatorClientId | String | No |
| creatorClientProductId | String | No |
| fromClientCleanedBy | String | No |
| hasZeroDepositOrder | Boolean | No |
| hasTransparencyAll | Boolean | No |
| isNotForUnder18 | Boolean | No |
| isDirty | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| description | String | No |
| imageId | String | No |
| threeDImage | String | No |
| video | String | No |
| categoryId | String | No |
| manufacturer | String | No |
| street_address | String | No |
| city | String | No |
| countryId | String | No |
| String | No | |
| website | String | No |
| draftNotes | String | No |
| draftType | String | No |
| draftCreatedAt | DateTime | No |
| createdById | String | No |
| createdAt | DateTime | No |
| reviewedAt | DateTime | No |
| reviewNotes | String | No |
| reviewerId | String | No |
| inReview | Boolean | No |
| isApproved | Boolean | No |
| lastModified | DateTime | No |
| creatorClientId | String | No |
| creatorClientProductId | String | No |
| fromClientCleanedBy | String | No |
| hasZeroDepositOrder | Boolean | No |
| hasTransparencyAll | Boolean | No |
| isNotForUnder18 | Boolean | No |
| isDirty | Boolean | No |